	$(document).ready(function() { 
	$("#slider img").fadeTo(1,0);
	//hide carousel images until load complete
	$bodySrch = $(document).find(".bodyCol");
	if($bodySrch.length == 0){
			$currentH = $(".column_left").height();
		$rightHeight = $(".column_right").height();
		if($currentH > $rightHeight){
			$(".column_right").height($currentH);
		}else{
			$(".column_left").height($rightHeight);
		}
	
	}else{
		$currentH = $("#contentLeft").height();
		$rightHeight = $("#contentRight").height();
		if(".expandable"){
			$exHeight = $(".expandable").height();
			$currentH = $currentH - $exHeight;
		}
		//alert($currentH);
		//alert($rightHeight);
		
		if($currentH > $rightHeight){
			$("#contentRight").height($currentH);
		}else{
			//$("#contentLeft").height($rightHeight);
		}
	}
	
		      $("#scrollDown").click(function(){	
				$('html, body').animate({
				scrollTop: $("#content_top").offset().top
				}, {
				duration: 'slow',
				easing: 'easeInSine'});
			  });
			  
	});
