$(function() {
	
	var leftHeight = $("#col_left .col_inner").height();
	var rightHeight = $("#col_right").height();
	
	if (leftHeight < rightHeight) {
		$("#col_left .col_inner").height( $("#col_right").height() );
	}
	else {
		$("#col_right").height( $("#col_left").height() );
	}	
	
	
	$( '#follow' ).scrollFollow({
		offset: 20,
		easing: "easeOutQuad"
	});

	//$("a.zoom").fancybox({'imageScale':false, 'frameWidth':800, 'frameHeight': 650});
	$("a.zoom").colorbox({width:"800px", height:"600px", iframe:false, scalePhotos:false, scrolling:true});

	$("td[colspan='7']").css("border","none").height(30);
	
});
