var myimages=new Array()
function preloadimages()
{
	for (i=0;i<preloadimages.arguments.length;i++)
	{
		myimages[i]=new Image()
		myimages[i].src=preloadimages.arguments[i]
	}
}


if (TransMenu.isSupported()) 
{
	
	if(document.all)
	{
		var ms = new TransMenuSet(TransMenu.direction.down, -5, 18, TransMenu.reference.bottomLeft);
	}
	else
	{
		var ms = new TransMenuSet(TransMenu.direction.down, -5, 3, TransMenu.reference.bottomLeft);
	}
	
	var menu1 = ms.addMenu(document.getElementById("jewelry"));
	menu1.addItem("Carrera Y Carrera", "#"); 
	menu1.addItem("Chopard", "http://www.artisticjewelers.com/chopard/index.html"); 
	menu1.addItem("David Yurman", "http://www.artisticjewelers.com/dy/index.html"); 
	menu1.addItem("Faberge", "#"); 
	menu1.addItem("John Hardy", "http://www.artisticjewelers.com/jhardy/index.html"); 
	menu1.addItem("Marco Bicego", "http://www.artisticjewelers.com/marco/index.html"); 
	menu1.addItem("Mikimoto", "http://www.artisticjewelers.com/mikimoto/index.html"); 
	menu1.addItem("Pandora", "http://www.artisticjewelers.com/pandora/index.html"); 
	menu1.addItem("Penny Preville", "http://www.artisticjewelers.com/penny/index.html"); 
	menu1.addItem("Van Cleef & Arpels", "http://www.artisticjewelers.com/vca/index.html"); 
	menu1.addItem("Wellendorff", "http://www.artisticjewelers.com/wellendorff/index.html"); 
	menu1.addItem("Yvel", "#"); 
		
		
	var menu2 = ms.addMenu(document.getElementById("watches"));	
	menu2.addItem("Audemars Piguet", "http://www.artisticjewelers.com/ap/index.html");
	menu2.addItem("Bedat & Co.", "#");
	menu2.addItem("Bell & Ross", "#");
	menu2.addItem("Chanel", "http://www.artisticjewelers.com/chanel/index.html");
	menu2.addItem("Chopard", "http://www.artisticjewelers.com/chopard/index.html");
	menu2.addItem("David Yurman", "http://www.artisticjewelers.com/dy/index.html");
	menu2.addItem("Franck Muller", "#");
	menu2.addItem("Girard Perregaux", "#");
	menu2.addItem("Panerai", "http://www.artisticjewelers.com/panerai/index.html");
	menu2.addItem("Technomarine", "#");
	menu2.addItem("Uboat", "#");
	menu2.addItem("Van Cleef & Arpels", "http://www.artisticjewelers.com/vca/index.html");
		
	var menu3 = ms.addMenu(document.getElementById("storeinfo"));
	menu3.addItem("Store Magazine", "http://www.artisticjewelers.com/magazine/index.html");
	menu3.addItem("Art of Time Jewelers", "http://www.artisticjewelers.com/aot/index.html");
	
		
	var menu4 = ms.addMenu(document.getElementById("contact"));
	menu4.addItem("Contact Information", "http://www.artisticjewelers.com/contact/index.html");
	menu4.addItem("Information Request", "http://www.artisticjewelers.com/request/infoRequest.php");
	menu4.addItem("Chat Request", "http://www.artisticjewelers.com/chat/index.html");
	
	
	TransMenu.renderAll();
}