jQuery(document).ready(function(){

	jQuery("#beer").mouseover(function(){
        jQuery(this).animate({paddingTop: "0"}, 1200)
		.animate({paddingTop: "15px"}, 300)
		
	});
	jQuery("#beer").mouseout(function(){
        jQuery(this).stop(true)
        .animate({paddingTop: "15"}, 1)
	});	
	jQuery("#kids").mouseover(function(){
        jQuery(this).animate({marginLeft: "+=15"}, 1200)
		.animate({marginLeft: "-=30"}, 1200)
		.animate({marginLeft: "+=15"}, 1200)
	});
	jQuery("#kids").mouseout(function(){
        jQuery(this).stop(true)
        .animate({margin: "0"}, 1)
	});	
	
	jQuery("#hurrtogo").mouseover(function(){
        jQuery(this).animate({opacity: "0", marginLeft: "+=25"}, 700)
		.animate({opacity: "0", marginLeft: "-=50"}, 1)
		.animate({opacity: "1", marginLeft: "+=25"}, 700)

	});
	jQuery("#hurrtogo").mouseout(function(){
        jQuery(this).stop(true)
        .animate({opacity: "1", margin: "0"}, 1)
	});	
	
	jQuery("#franbox img").mouseover(function(){ 
        jQuery(this).css('backgroundImage', 'url(wp-content/themes/hurricane/images/franchisebg.png)') 
        jQuery(this).css('backgroundRepeat', 'no-repeat')
        jQuery(this).css('backgroundPosition', '10px 0px')
    }), 
    jQuery("#franbox img").mouseout(function(){ 
        jQuery(this).css('backgroundImage', 'none') 
    } 
);	 
});
