jQuery.noConflict(); 
 /* make it work with other library's */

(function($) {

/* continue as normal */
$(document).ready(function(){	
	
	/*$("div.exhib img").load(function(){
		$(this).resize({		
			maxWidth: 100,
			maxHeight: 75
		});
		$(this).css("visibility", "visible");
	});*/
	
	
	
	/*$("div.exhib img").resize({		
		maxWidth: 100,
		maxHeight: 75
	});*/
});	

$(window).load(
	function() {
		$("div.exhib img").resize({
			maxWidth: 100,
			maxHeight: 75
		});
		$("div.exhib img").css("visibility", "visible");
		
		$("div.exhib_details span.logo img").resize({
			maxWidth: 300,
			maxHeight: 200			
		});
		$("div.exhib_details span.logo img").css("visibility", "visible");
	}
);
		
})(jQuery);
