$(function(){
	$("#nav")
	.superfish({
		animation : { opacity:"show", height:"show", delay:500, speed:'fast'}
	});
	
	var LCHeight = $("#leftCol").height();
	var RCHeight = $("#rightCol").height();
	if(LCHeight > RCHeight){
		$("#rightCol").height(LCHeight);
	}else{
		$("#leftCol").height(RCHeight);
	}
});

