// Window Resize

function wrsize()
{
	var bodb = document.body.offsetWidth;

	if (bodb < 1060)
	{
document.getElementById('container').className= "";
	}
	else if (bodb >= 1060)
	{
	document.getElementById('container').className= "breed";
	}
	}
	
window.onresize = wrsize;	