

	$(function(){
		$('.in1').hover(function(){
			$(this).stop().animate({"opacity":"0"}, "slow");
		}, function(){
			$(this).stop().animate({"opacity":"1"}, "slow");
		});
		
		$('.fb1').hover(function(){
			$(this).stop().animate({"opacity":"0"}, "slow");
		}, function(){
			$(this).stop().animate({"opacity":"1"}, "slow");
		});
		
		$('.yelp1').hover(function(){
			$(this).stop().animate({"opacity":"0"}, "slow");
		}, function(){
			$(this).stop().animate({"opacity":"1"}, "slow");
		});
		
		$("#menu ul li a").hover(function(){
			$(this).stop().animate({"color":"#900105"},"slow");
		}, function(){
			$(this).stop().animate({"color":"#4c4d4f"},"slow");
		});
		
		$("a.active").hover(function(){
			$(this).stop().animate({"color":"#900105"},"slow");
		}, function(){
			$(this).stop().animate({"color":"#4c4d4f"},"slow");
		});
		
		
		$('li.submenu').hoverIntent(function(){
			$(this).find('ul').slideDown('medium');
		}, function(){
			$(this).find('ul').slideUp('medium');
			});
		
	});
	


	
    $(document).ready(function(){ 
        $(document).pngFix(); 
    }); 	

