function mouseOver()
{
document.getElementById("b1").src ="LOGO2.png";
}
function mouseOut()
{
document.getElementById("b1").src ="LOGO1.png";
}
function mouseOver2()
{
document.getElementById("b2").src ="light2.png";
}
function mouseOut2()
{
document.getElementById("b2").src ="light1.png";
}
function resizing()
{
	var theWidth=0;
	if (window.innerWidth)
 		theWidth=window.innerWidth;
	else if (document.documentElement && document.documentElement.clientWidth)
	 	theWidth=document.documentElement.clientWidth;
	else if (document.body)
 		theWidth=document.body.clientWidth;
	if (theWidth < 1200) 
	{
		document.body.style.backgroundPosition="left center";
	}
	if(theWidth >1200)
	{
		document.body.style.backgroundPosition="center center";
	}
}
function visibility(object)
{
  if (document.getElementById) 
  {
      document.getElementById(object).style.visibility = 'visible';
  }
  return false;
}
function out(object)
{
	document.getElementById(object).style.visibility = 'hidden';
}
function spec(object, object2)
{
	visibility(object);
	out(object2);
}
function visibility2(object)
{
  if (document.getElementById) 
  {
      document.getElementById(object).style.visibility = 'inline';
  }
  return false;
}
function out2(object)
{
	document.getElementById(object).style.display = 'none';
}

