jQuery('document').ready(function(){
	$('#header_SocialNet_Links a').bind("mouseenter",function(e){
		$('#header_SocialNet_Caption .caption').hide();
		$('#' + this.id.substring(17)).show();
	});

	$('#nav ul li').bind("mouseenter",function(e){
		$(this).children('ul').show();
	}).bind("mouseleave",function(e){
		$(this).children('ul').hide();
	});
});