$(function(){
	// dropdowmn menu
	$(".level1 li.submenu").hover(function(){
		$(this).find(".level2").stop().animate({ top:'47px', opacity:'1'}, "slow", '') 
	}, function(){
		$(this).find(".level2").stop().animate({ top:'47px', opacity:'0'}, "slow", '')
	});
});
$(function(){
	// dropdowmn menu
	$(".social a").hover(function(){
		$(this).find("img").stop().animate({ opacity:'0.5'}, "slow", '') 
	}, function(){
		$(this).find("img").stop().animate({ opacity:'1'}, "slow", '')
	});
});

