$(window).bind("load",function(){
		

$("#splashimg").css({'display' : 'none'});
$("#splashimg").fadeIn(1250);

});

$(document).ready(function() {

    // Hover Function for buttons with active-class
	$(".btn").mouseout(function(){
		$(this).removeClass('hovered');
    	}).mouseover(function(){
		$(this).addClass('hovered');
    });
    
    	$(".zemSubmit").mouseout(function(){
		$(this).removeClass('hovered');
    	}).mouseover(function(){
		$(this).addClass('hovered');
    });
});
