<!--
// PRELOADING IMAGES
if ( document.images )
{
	ShowroomOut = new Image();
	ShowroomOver = new Image();
	ProductsOut = new Image();
	ProductsOver = new Image();
	ServiceOut = new Image();
	ServiceOver = new Image();
	ContactusOut = new Image();
	ContactusOver = new Image();
	
	ShowroomOut.src = "images/showroom_home_out.jpg"; 
	ShowroomOver.src = "images/showroom_home_over.jpg";
	ProductsOut.src = "images/products_home_out.jpg"; 
	ProductsOver.src = "images/products_home_over.jpg"; 
	ServiceOut.src = "images/service_home_out.jpg"; 
	ServiceOver.src = "images/service_home_over.jpg"; 
	ContactusOut.src = "images/contactus_home_out.jpg"; 
	ContactusOver.src = "images/contactus_home_over.jpg"; 
}

function OnShowroomOver() 
{ 
	if ( document.images )
	{	
		document.showroom.src = ShowroomOver.src;
	}
}

function OnShowroomOut() 
{
	if ( document.images )
	{
		document.showroom.src = ShowroomOut.src;
	}
}

function OnProductsOver() 
{ 
	if ( document.images )
	{	
		document.products.src = ProductsOver.src;
	}
}

function OnProductsOut() 
{
	if ( document.images )
	{
		document.products.src = ProductsOut.src;
	}
}

function OnServiceOver() 
{ 
	if ( document.images )
	{	
		document.service.src = ServiceOver.src;
	}
}

function OnServiceOut() 
{
	if ( document.images )
	{
		document.service.src = ServiceOut.src;
	}
}

function OnContactusOver() 
{ 
	if ( document.images )
	{	
		document.contactus.src = ContactusOver.src;
	}
}

function OnContactusOut() 
{
	if ( document.images )
	{
		document.contactus.src = ContactusOut.src;
	}
}

//-->