function WindowStatus()
{
	this.status = '覧>   L A S E R E D   M E M O R I E S   <覧';
}

function WinStatus()
{
	this.status = '覧>   L A S E R E D   M E M O R I E S   <覧';
}


function Properties( imgSrc, status )
{
	if ( document.images )
	{
	  	this.image = new Image();
	  	this.image.src = imgSrc;
	  	this.status = status;
	}
}


if ( document.images )
{
	defStatus = '覧>   L A S E R E D   M E M O R I E S   <覧';
	
	rollover = new Array();
	
	rollover.emailOff = 	  new Properties( '/product/images/email_gold.gif', defStatus );
	rollover.emailOn  = 	  new Properties( '/product/images/email_yellow.gif', 'E M A I L   U S' );	
/*		
	rollover.brandOff = 	  new Properties( '/images/lm_brand_b.gif', 36, 18, defStatus );
	rollover.brandOn  = 	  new Properties( '/images/lm_brand_yellow.gif', 36, 18, 'H O M E   P A G E' );	
*/
	
/*	
	rollover.optionsOff = new Properties( '/images/e_options.gif', 99, 19, defStatus );
	rollover.optionsOn =  new Properties( '/images/e_options_on.gif', 99, 19, 'C H O O S E   A   L A Y O U T !' );	
	
	rollover.clientsOff = new Properties( '/images/e_clients.gif', 99, 19, defStatus );
	rollover.clientsOn  = new Properties( '/images/e_clients_on.gif', 99, 19, 'O U R   C L I E N T S   -   C U R R E N T   &   P A S T' );	
	
	rollover.pricingOff = new Properties( '/images/e_pricing.gif', 99, 19, defStatus );
	rollover.pricingOn  = new Properties( '/images/e_pricing_on.gif', 99, 19, 'C U S T O M   S I T E   P R I C I N G' );	
	
	rollover.visionOff =  new Properties( '/images/e_vision.gif', 99, 19, defStatus );
	rollover.visionOn  =  new Properties( '/images/e_vision_on.gif', 99, 19, 'O U R   V I S I O N' );			
		
	rollover.contactOff = new Properties( '/images/e_contact.gif', 99, 19, defStatus );
	rollover.contactOn  = new Properties( '/images/e_contact_on.gif', 99, 19, 'C O N T A C T   U S' );		
*/
}

function swap(objName, state)
{
	if(document.images)
	{
		document[objName].src = rollover[objName + state].image.src;
		window.status = rollover[objName + state].status;
		return true;
	}
}

    


