jQuery(document).ready(function(){
	jQuery('.menuTheme ').mouseenter(function(){
		var width = jQuery(window).width()+1000;
		var height = jQuery(document).height()+1000;
		var decal = 1000;

		jQuery("<div>").addClass('transparent_bg transparent').attr({'style':'position:absolute; top:-'+decal+'px; left:-'+decal+'px;width:'+width+'px;height:'+height+'px;'}).prependTo('#global');
		jQuery('.transparent_bg').css({'opacity':'0.5','background-color':'#000000'});
		jQuery(this).children(':last').css({'z-index':'301','display':'block'});
		jQuery('.transparent_bg').css('z-index','11');
	});
	
	jQuery('.menuTheme ').mouseleave(function(){
		jQuery(this).children(':last').css({'display':'none'});
		/*jQuery(this).children(':last').animate({
			opacity: 0.3
		},500);*/
		jQuery('.transparent_bg').remove();
	});
	
	jQuery('.menuTheme a.link-theme').click(function(){
		return (false)
	
	});

});
