	// Begin jQuery
	                  
	$(document).ready(function() {

        
        $("#skipBtn").click(function() {
           
            $("#splash-body").stop().animate({opacity: "0.3"}, 3350, function() {
                   window.location.href = "?page_id=8";
            });
            $("#slideshow img").stop().animate({opacity: "0.3"}, 3350, function() {
            });
       });

		
		$(".brandBlock").hover(function() {
			var e = this;
		    $(e).stop().animate({ marginTop: "-14px" }, 250, function() {
		    	$(e).animate({ marginTop: "-10px" }, 250);
		    });
		},function(){
			var e = this;
		    $(e).stop().animate({ marginTop: "4px" }, 250, function() {
		    	$(e).animate({ marginTop: "0px" }, 250);
		    });
		});
        
        $(".brandBlock").click(function() {
            var e = this;  
            $(e).stop().animate({ marginTop: "48px" }, 250, function() {
                $(e).animate({ marginTop: "10px" }, 250);
            });
        });
						
	// End jQuery
	
	});
