function adjustHeader()
{
	if(screen.width <= 800)
	{
		var elem = document.getElementById('leftStripe');
		elem.style.width = "55px";
		elem = document.getElementById('rightStripe');
		elem.style.width = "40px";
		elem.style.background = 'url("Images/HeadStripeRightSmall.png") repeat-y top left';
		elem = document.getElementById('menu');
		elem.style.marginLeft = "55px";
	}
	else if(screen.width <= 1024)
	{
		elem = document.getElementById('rightStripe');
		elem.style.width = "70px";
		elem.style.background = 'url("Images/HeadStripeRightSmall.png") repeat-y top left';
	}	
}



