$(document).ready(function(){	
	// gestione area clienti	
	jQuery("#fullscreen").css("opacity", 0);
	function showProfile(){
		//jQuery("#profile a").parent().parent().addClass('profileactive');
		jQuery("#fullscreen").css("display", "block").animate({opacity: 0.5}, 200);
		jQuery("#profileview").slideDown(700, function(){ jQuery(this).find('.closeprofile').fadeIn(200); });
		jQuery("#header").animate({marginTop: '80px'}, 700);
	}
	// Toogle profileview
	jQuery("#profile a").click(function(e){
		e.preventDefault();
		showProfile();
	});
	jQuery("#fullscreen, #profileview .closeprofile").click(function(e){
		e.preventDefault();
		//jQuery("#menu").removeClass('profileactive');
		jQuery("#fullscreen").delay(200).fadeOut('slow');
		jQuery("#profileview").slideUp(700).find('.closeprofile').fadeOut(200);
		jQuery("#header").animate({marginTop: '0px'}, 700);
	});
});
