$(function(){
	var width = $(window).width();
	var height = $(window).height();
	
	
	$('div#wrapper').css({"width":width,"height":height});
	
	$('img.bgmaximage').maxImage({
		isBackground: true,
		slideShow: false,
		slideDelay: 10,
		position: 'absolute',
		verticalAlign: 'bottom',
		slideShowTitle: false,
		maxFollows: 'height',
		resizeMsg: {show: false},
		overflow: 'hidden' 
	});
});

/** FUNZIONE CHE GENERA SERIAL NUMBER **/
function GetSerialNumber(anticipo)
{
	var now = new Date();
	anticipo.ordernumber.value=((((now.getYear()+1900) ) *10000000000)+(now.getMonth()*100000000)+now.getDay()*1000000+now.getHours()*10000+now.getMinutes()*100+now.getSeconds());
}