function precacheImage(p_url)
{
	l_img = new Image()
	l_img.src = p_url;
}

//----- JQuery Ready ---------------------------------------


if(true){
$(document).ready( function(){ 
	d=$('#navbar img').each( 
		function(e) {
			precacheImage( this.src.replace(/-up./, "-over.") );
		});


	$("#navbar img").mouseover( function(event) {
		this.src = this.src.replace(/-up./, "-over.");
	});
	$("#navbar img").mouseout( function(event) {
		this.src = this.src.replace(/-over./, "-up.");
	});
});
}
//----- End of JQuery Ready --------------------------------
