$(document).ready(function()
{
	$(window).bind("resize", function(){
		reSizeImg();
	});
	reSizeImg();
});


function reSizeImg()
{
	//	2000:1333
	var stw = $(window).width();
	var sth = $(window).height();
	//$("#debug").html(stw + ":" + sth)
	if(stw>=sth && ((stw*1333)/2000) >= sth)
	{
		$("#img_sfondo").width(stw);
		$("#img_sfondo").height((stw*1333)/2000);
		
		$("#img_sfondo").css("margin-top","-"+(($("#img_sfondo").height()-sth)/2)+"px");
		$("#img_sfondo").css("margin-left","0px");
	}
	else
	{
		$("#img_sfondo").height(sth);
		$("#img_sfondo").width((sth*2000)/1333);
		
		$("#img_sfondo").css("margin-top","0px");
		$("#img_sfondo").css("margin-left","-"+(($("#img_sfondo").width()-stw)/2)+"px");

	}
}