jQuery(document).ready(function($) {
	
	var $ = jQuery;
	
			//Examples of how to assign the ColorBox event to elements
			$(".colorbox").colorbox();
			
});

$(window).bind("load", function() {
		var left = $('#left-menu');
		var right = $('#main');
		var lheight = left.height();
		if(lheight > right.height()) {
			right.animate({
				height:lheight
			},250);
		}
});
