// JavaScript Document
$(function() {

        // Set CSS for old versions of 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'});

        // Animate the Shutter
        $("#garagedoor a").hover(function(){
              $(this).parent().stop().animate({backgroundPosition: '(0px -297px)'}, 300);
            }, function() {
              $(this).parent().stop().animate({backgroundPosition: '(0px 0px)'}, 300);
        });

 });
