

/********************\
 )		subnav		(
\********************/
function toggle(id,left_px,type) {	
	//safe function to show an element with a specified id
	
	var x=document.getElementById(id+"_dd")
	
	if (document.getElementById) { // DOM3 = IE5, NS6
			x.style.left = left_px;
		} else {
			if (document.layers) { // Netscape 4

				document.id.left = left_px;
			}
			else { // IE 4
				document.all.id.style.left = left_px;
			}
		}
	highlight(id,type);
}


function toggleRO(imageName,myimage){
		document.images[imageName].src= myimage;
		
}
function highlight(lnk,type) {
		if(type == 1) document.getElementById(lnk).style.backgroundColor='#333333';
		else if(type == 2)  document.getElementById(lnk).style.backgroundColor='#6E8DAA';
}

/********************\
 )		/subnav		(
\********************/

/***** Date code

/******************* Homepage Date *************************/

function getRandomSubImage(){
			var randomNumber = Math.floor(Math.random()*6);
			
			document.write('<img src="/paladar/images/randoms/image'+(randomNumber+1)+'.jpg">');
		}