$(document).ready(function() {

			//Set css in Firefox (Required to use the backgroundPosition js)
			$('#shutter1').css({backgroundPosition: '0px 0px'});
			$('#shutter2').css({backgroundPosition: '0px 0px'});
			$('#shutter3').css({backgroundPosition: '0px 0px'});
			$('#shutter4').css({backgroundPosition: '0px 0px'});
			$('#shutter5').css({backgroundPosition: '0px 0px'});
			$('#shutter6').css({backgroundPosition: '0px 0px'});
			$('#shutter7').css({backgroundPosition: '0px 0px'});
			$('#shutterActive').css({backgroundPosition: '0px -500px'});

			//Animate the shutter  
			$(".link-home").hover(function(){
			      $(this).parent().stop().animate({backgroundPosition: '(0px -500px)'}, 300 );
			    }, function() {
			      $(this).parent().stop().animate({backgroundPosition: '(0px 0px)'}, 500 );
			}); 
			$(".link-boards").hover(function(){
			      $(this).parent().stop().animate({backgroundPosition: '(0px -500px)'}, 300 );
			    }, function() {
			      $(this).parent().stop().animate({backgroundPosition: '(0px 0px)'}, 500 );
			});
			$(".link-team").hover(function(){
			      $(this).parent().stop().animate({backgroundPosition: '(0px -500px)'}, 300 );
			    }, function() {
			      $(this).parent().stop().animate({backgroundPosition: '(0px 0px)'}, 500 );
			});
			$(".link-community").hover(function(){
			      $(this).parent().stop().animate({backgroundPosition: '(0px -500px)'}, 300 );
			    }, function() {
			      $(this).parent().stop().animate({backgroundPosition: '(0px 0px)'}, 500 );
			});
			$(".link-news").hover(function(){
			      $(this).parent().stop().animate({backgroundPosition: '(0px -500px)'}, 300 );
			    }, function() {
			      $(this).parent().stop().animate({backgroundPosition: '(0px 0px)'}, 500 );
			});
			$(".link-about").hover(function(){
			      $(this).parent().stop().animate({backgroundPosition: '(0px -500px)'}, 300 );
			    }, function() {
			      $(this).parent().stop().animate({backgroundPosition: '(0px 0px)'}, 500 );
			});
			$(".link-store").hover(function(){
			      $(this).parent().stop().animate({backgroundPosition: '(0px -500px)'}, 300 );
			    }, function() {
			      $(this).parent().stop().animate({backgroundPosition: '(0px 0px)'}, 500 );
			});
		 });