jQuery(window).bind("load", function() {
	jQuery("div#slider1").codaSlider()
	
    jQuery("div.loading").css({ display: "none" });  
	
	 $('.ref img').fadeTo("fast",0.25);
	 $('.ref img').hover(function() {
		$(this).fadeTo("fast",1);
		},
		function () {
		$(this).fadeTo("fast",0.25);
		});		
});