// JavaScript Document

//preload hovers

if (document.images)
{
	preload_image_object = new Image();
	image_url = new Array();
	image_url[0] = "/img/home/h2_recent_work_over.gif";
	image_url[1] = "/img/home/h2_past_work_over.gif";
	image_url[2] = "/img/home/h2_about_over.gif";
	image_url[3] = "/img/home/h2_contact_over.gif";
	image_url[4] = "/img/home/h2_phyllomedusa_bicolor_over.gif";
	image_url[5] = "/img/home/h2_whistling_past_the_graveyard_over.gif";
	
	var i = 0;
	for(i=0; i<=image_url.length; i++)
	{
		preload_image_object.src = image_url[i];
	}	
}