// JavaScript Document


$(document).ready(function() {
						   
		$('.faceBook').tipsy({gravity: 's',fade:true});	
		$('.tweet').tipsy({gravity: 's',fade:true});	
		$('.msg_us').tipsy({gravity: 's',fade:true});	
						   
				   
	$("#menu ul li ul li a").hover(function() {
				
				$(this).stop().animate({backgroundColor: "#777777"},300);
								 
			});	
	
	$("#menu ul li ul li a").mouseout(function() {
				
				$(this).stop().animate({backgroundColor: "#555555"},300);
								 
			});	
	/*
	
	$("#menu ul li").mouseover(function() {
					
					$(this).children('ul').stop().slideDown(300);						
			});
	$("#menu ul li").mouseout(function() {
									   
					$(this).children('ul').fadeOut(200,
			
			function() {$(this).children('ul').css( display,"none");}
			
			);
					
			}); */
	
	

	
	
	$("#soc_icon ul li").mouseover(function() {
						$(this).children().children().stop().animate({bottom:"6px"},150);									
												
				});
				$("#soc_icon ul li").mouseout(function() {
						$(this).children().children().stop().animate({bottom:"0px"},150);									
													
				});



}); 
