// JavaScript Document
$(document).ready(function () {	
//Set css in Firefox (Required to use the backgroundPosition js)
		
		
		$("#splash td").hover(function () {
    			$('.shutter').fadeTo(1000,1.0);
	  		},
  			function () {
    			$('.shutter').fadeTo(700,.0);
  			}
		);

	
});