$(document).ready(function() {

			//Set css in Firefox (Required to use the backgroundPosition js)
			$('#suit').css({backgroundPosition: '0px 0px'});
			$('#shop').css({backgroundPosition: '0px 0px'});
			$('#formal').css({backgroundPosition: '0px 0px'});
			$('#shirt').css({backgroundPosition: '0px 0px'});
			$('#arrange').css({backgroundPosition: '0px 0px'});
			$('#arrival').css({backgroundPosition: '0px 0px'});
			$('#l_suit').css({backgroundPosition: '0px 0px'});
			$('#l_blouse').css({backgroundPosition: '0px 0px'});

			//Animate the shutter  
			$(".suit").hover(function(){
			      $(this).parent().animate({backgroundPosition: '(0px 90px)'}, 300 );
			    }, function() {
			      $(this).parent().animate({backgroundPosition: '(0px 0px)'}, 300 );
			}); 
			//Animate the shutter  
			$(".shop").hover(function(){
			      $(this).parent().animate({backgroundPosition: '(90px 0px)'}, 300 );
			    }, function() {
			      $(this).parent().animate({backgroundPosition: '(0px 0px)'}, 300 );
			}); 
			//Animate the shutter  
			$(".formal").hover(function(){
			      $(this).parent().animate({backgroundPosition: '(90px 0px)'}, 300 );
			    }, function() {
			      $(this).parent().animate({backgroundPosition: '(0px 0px)'}, 300 );
			}); 
			//Animate the shutter  
			$(".shirt").hover(function(){
			      $(this).parent().animate({backgroundPosition: '(0px 90px)'}, 300 );
			    }, function() {
			      $(this).parent().animate({backgroundPosition: '(0px 0px)'}, 300 );
			});
			//Animate the shutter  
			$(".arrange").hover(function(){
			      $(this).parent().animate({backgroundPosition: '(0px 90px)'}, 300 );
			    }, function() {
			      $(this).parent().animate({backgroundPosition: '(0px 0px)'}, 300 );
			}); 
			//Animate the shutter  
			$(".arrival").hover(function(){
			      $(this).parent().animate({backgroundPosition: '(89px 0px)'}, 300 );
			    }, function() {
			      $(this).parent().animate({backgroundPosition: '(0px 0px)'}, 300 );
			}); 
			//Animate the shutter  
			$(".l_suit").hover(function(){
			      $(this).parent().animate({backgroundPosition: '(0px 90px)'}, 300 );
			    }, function() {
			      $(this).parent().animate({backgroundPosition: '(0px 0px)'}, 300 );
			}); 
			//Animate the shutter  
			$(".l_blouse").hover(function(){
			      $(this).parent().animate({backgroundPosition: '(90px 0px)'}, 300 );
			    }, function() {
			      $(this).parent().animate({backgroundPosition: '(0px 0px)'}, 300 );
			}); 
		 });