function getBrowserWidth(){
	if (window.innerWidth){
	return window.innerWidth;
	}else if (document.documentElement && document.documentElement.clientWidth != 0){
	return document.documentElement.clientWidth; }
	else if (document.body){return document.body.clientWidth;}
	return 0;
} 
function changeBackground(img_dir){
	var body = document.getElementById('body');
	//alert(getBrowserWidth());
	var data = new Date();
	var Hh;
	ora = data.getHours();
	img = img_dir;
	if (ora >= 21 || ora < 6 ){
		img += 'bg_notte.jpg';
		cambiaClassebyTagName('td' , 'prod_visto_name', 'prod_visto_notte');
	}else if (ora >= 6 && ora < 8 ){
		img += 'bg_alba.jpg';
	}else if (ora >= 8 && ora < 19 ){
		img += 'bg_giorno.jpg';
	}else if (ora >= 19 && ora < 21 ){
		img += 'bg_tramonto.jpg';
		cambiaClassebyTagName('td' , 'prod_visto_name', 'prod_visto_tramonto');
		document.getElementById('pv').style.backgroundColor = "#ffffff";
	}
	
	body.style.backgroundImage="url('"+img+"')";
	body.style.backgroundAttachment="fixed";
	body.style.backgroundRepeat='no-repeat';
}
