// JavaScript Document

	function itemRollOver(id) {
		document.body.style.cursor="pointer";		
		element = document.getElementById("p_"+id);
		//top = document.getElementById("top_"+id);
		element.style.border = '1px solid #FFFFFF';
		//top.style.backgroundColor = '#6CB8D8';
	}
	
	function itemRollOut(id) {
		document.body.style.cursor="default";
		element = document.getElementById("p_"+id);
		//top = document.getElementById("top_"+id);		
		element.style.border = '1px solid #3C67A4';
		//top.style.backgroundColor = '#6CB8D8';
	}
	
	function itemClick(address) {
		document.location = address;
		return false;
	}
	
	function imageToggle(id,src){
		element = document.getElementById(id);
		element.src = src;
	}
	
	function preloadImage(src){
		var i = new Image
		i.src=src;
	}

