

function loadImage(s)
{
	document.getElementById("home_").src = "images/mouseovers/home_"  + s + ".jpg";
}


function changeImage(e)
{
	document.getElementById("home_").src = "images/mouseovers/home_"  + e.id + ".jpg";
}
function applyStyles(e)
{
	if(navigator.platform.indexOf("Win") > -1)
	{
		if(navigator.appName.indexOf("Explorer") > -1)
		{
				swidth = parseInt(screen.width); 
				sheight = parseInt(screen.height); 
				if(swidth == 1024)
				{
					document.getElementById("cont").style.marginTop = 50;
					//alert('you are on a PC and your resolution your screen width is 1024');
				}
				else 
					if(swidth == 800)
					{
					document.getElementById("cont").style.marginTop = 0;
					//document.getElementById("b1").style.overflowX = "hidden";
					//alert('you are on a PC and your resolution your screen width is 800');
					}
		}
		else
			{
				
				swidth = parseInt(screen.width); 
				sheight = parseInt(screen.height); 
				//alert(parseInt(screen.width));
				if(swidth == 1024)
				{
				
					document.getElementById("cont").style.marginTop = 50;
					//alert('you are on a PC and your resolution your screen width is 1024');
				}
				else 
					if(swidth == 800)
					{
					
					document.getElementById("cont").style.marginTop = 0;
					document.getElementById("b1").style.overflowX = "hidden";
					//alert('you are on a PC and your resolution your screen width is 800');
					}
			}
	}
	else 
		{
		document.getElementById("b1").style.backgroundPosition='42% 18%';
		//alert("you are on a macintosh");
		}
}


function test()
{
alert(navigator.appName);
}

