// Preloads and mouseover functions =================================
function pixPath(depth)
	{
	/*
	preload('hh',depth+'pix/hh.gif');
	preload('hh_roll',depth+'pix/hh_roll.gif');
	preload('nycpNav','gbut_nycp');
	preload('bkingNav','gbut_bking');*/
	
	//Nav Buttons ======
	preload('b_about',depth+'pix/b_about.gif');
	preload('b_aboutov',depth+'pix/b_aboutov.gif');

	preload('b_faq',depth+'pix/b_faq.gif');
	preload('b_faqov',depth+'pix/b_faqov.gif');
	
	preload('b_resources',depth+'pix/b_resources.gif');
	preload('b_resourcesov',depth+'pix/b_resourcesov.gif');
	
	}
	
function preload(imgObj,imgSrc)
	{
	eval(imgObj+' = new Image()');
	eval(imgObj+'.src = "'+imgSrc+'"');
	
	}
	
function roll1(imageID,imageName) {
		document.images[imageID].src = eval(imageName + ".src");
	}
	
	
function roll2(imageID,imageName,imageID2,imageName2) {
		document.images[imageID].src = eval(imageName + ".src");
		document.images[imageID2].src = eval(imageName2 + ".src");
	}



// /Preloads and mouseover functions =================================



