$(document).ready(function() { 
	$('.body .cornice').css('width','271px');
	
	var apiExpose;
	
	$('#menu .firstLevelMenu a').mouseover(function() {
		$('.body').css('display','none');
		var idLink = $(this).attr('id');
		$('#'+idLink+'Body').css('display','block');
	
		var widthPic = $('#'+idLink+'Body .cornice img').attr('width');
		$('#'+idLink+'Body .cornice').css('width',widthPic+'px');
		$('#'+idLink+'Body .didaSezione').css('width',widthPic+'px');
	});
	
	
	/// ALTEZZA UNIFORME
	var altezzapagina = $(document).height()-80;
	$('#submenu').height(altezzapagina);
	$('#blog').height(altezzapagina);
	$('#middleblock').height(altezzapagina);
	
	/// NO RIENTRO PRIMO PARAGRAFO BLOG
	$('.articolo').each(function (i) {
		$(this).children('p:first').css('text-indent','0');
	});
	
	
});
/*$(document).livequery('ready',function() { 
	$('.body .cornice').css('width',$('.body .cornice img').attr('width'));
	
	var apiExpose;
	
	$('#menu .firstLevelMenu a').mouseover(function() {
		$('.body').css('display','none');
		var idLink = $(this).attr('id');
		$('#'+idLink+'Body').css('display','block');
	
		var widthPic = $('#'+idLink+'Body .cornice img').attr('width');
		$('#'+idLink+'Body .cornice').css('width',widthPic+'px');
	});
	
	
	/// ALTEZZA UNIFORME
	var altezzapagina = $(document).height()-80;
	$('#submenu').height(altezzapagina);
	$('#blog').height(altezzapagina);
	
});*/