//<![CDATA[
/*
*** Common scripts
*/

jQuery(function($){

	$(document).ready(function(){
	
		/*Your scripts here*/
	
		//script to look for slimboxed images
		$('img.caption').each(function(){
			$(this).wrap('<a href="'+this.src+'" rel="lightbox-imgs"></a>');
		});
		
   		$('#topmenu li:last-child').css({backgroundImage: "none"});
		if($('#left').height() > $('#right').height()) {
			// code to be executed if condition is true
			$('#right').css({height: $('#left').height()+168});
		}
		else {
			// code to be executed if condition is false
			$('#left').css({height: $('#right').height()});
		}

	});

});

//]]>
