function background() {
	var imgWidth = 2000;
	var documento = jQuery(document);
	var docWidth = documento.width();
	if (imgWidth > documento) {
		var backPos = parseInt((imgWidth - docWidth) / 2);
	} else {
		var backPos = parseInt((docWidth - imgWidth) / 2);
	}
	jQuery('body').css('background-position', backPos + 'px 0');
} 

jQuery(document).ready(function() {

	var ie55 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 5.5") != -1);
	var ie6  = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 6.0") != -1);

	// gestione sfondo
	background();
	
	// gestione pagine menu_top
	if (jQuery('.headPagine ul').children().size() > 0) {
		// Bottone 'Chi sono'
		var chiSono     = jQuery('.widget_pages ul li:nth-child(1)');
		var chiSonoLink = jQuery('.widget_pages ul li:nth-child(1) a');
		var chiSonoImg  = (jQuery.browser.msie && (ie55 || ie6)) ? '<img src="http://www.chediavolostasuccedendo.it/img/bt-chisono.gif" width="159" height="116" alt="Chi sono" />' : '<img src="http://www.chediavolostasuccedendo.it/img/bt-chisono.png" width="159" height="116" alt="Chi sono" />';
		var chiSonoCss  = {
			'position'  : 'absolute'
			, 'top'     : '200px'
			, 'right'   : '86px'
			, 'width'   : '159px'
			, 'height'  : '116px'
			, 'z-index' : '999'
		}
      	chiSono.css(chiSonoCss);
		chiSonoLink.text('');
		chiSonoLink.append(chiSonoImg);
	}
	// gestione loghi per IE6/png
	if (jQuery.browser.msie && (ie55 || ie6)) {
		jQuery('.png2gif').each(function(e) {
			var src    = jQuery(this).attr('src');
			var newSrc = src.replace('.png', '.gif');
			jQuery(this).attr('src', newSrc);
		});
	}

	// gestione titoli sidebar
	// Ultimi post
	if (jQuery('.widget_recent_entries').length > 0) {
		var h2    = jQuery('.widget_recent_entries h2');
		var h2Img = '<img src="http://www.chediavolostasuccedendo.it/img/tit-ultimipost.png" width="140" height="45" alt="Ultimi post" />';
		h2.text('');
		h2.append(h2Img);
	}
	// Ultimi commenti
	if (jQuery('.widget_recent_comments').length > 0) {
		var h2    = jQuery('.widget_recent_comments h2');
		var h2Img = '<img src="http://www.chediavolostasuccedendo.it/img/tit-ultimicommenti.png" width="184" height="41" alt="Ultimi commenti" />';
		h2.text('');
		h2.append(h2Img);
	}
	// Tag cloud
	if (jQuery('.widget_tag_cloud').length > 0) {
		var h2    = jQuery('.widget_tag_cloud h2');
		var h2Img = '<img src="http://www.chediavolostasuccedendo.it/img/tit-tagcloud.png" width="127" height="48" alt="Tag cloud" />';
		h2.text('');
		h2.append(h2Img);
	}
	// Gallery
	if (jQuery('#ngg-webslice').length > 0) {
		var h2    = jQuery('#ngg-webslice h2 a');
		var h2Img = '<img src="http://www.chediavolostasuccedendo.it/img/tit-gallery.png" width="95" height="42" alt="Gallery" />';
		h2.text('');
		h2.append(h2Img);
	}

	jQuery(document).pngFix(); 
});
jQuery(window).resize(function() {

	// gestione sfondo
	background();

});