//<![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>');
		});
		$('#wrap').css('min-height', $(window).height());
	});
});

//]]>
