// Navigation image change
var img_name;

function over(img_name)
{
	if (document.images)
	{
		if (img_name == "img_about"){ document[img_name].src="http://www.hazelwhorley.com/css/images/nav_about_hover.gif"; }
		if (img_name == "img_level"){ document[img_name].src="http://www.hazelwhorley.com/css/images/nav_level_hover.gif";}
		if (img_name == "img_photos"){ document[img_name].src="http://www.hazelwhorley.com/css/images/nav_photos_hover.gif"; }
		if (img_name == "img_textures"){ document[img_name].src="http://www.hazelwhorley.com/css/images/nav_textures_hover.gif"; }
		if (img_name == "img_tutorials"){ document[img_name].src="http://www.hazelwhorley.com/css/images/nav_tutorials_hover.gif"; }
	}
}


function out(img_name)
{
	if (document.images)
	{
		if (img_name == "img_about"){ document[img_name].src="http://www.hazelwhorley.com/css/images/nav_about.gif"; }
		if (img_name == "img_level"){ document[img_name].src="http://www.hazelwhorley.com/css/images/nav_level.gif";}
		if (img_name == "img_photos"){ document[img_name].src="http://www.hazelwhorley.com/css/images/nav_photos.gif"; }
		if (img_name == "img_textures"){ document[img_name].src="http://www.hazelwhorley.com/css/images/nav_textures.gif"; }
		if (img_name == "img_tutorials"){ document[img_name].src="http://www.hazelwhorley.com/css/images/nav_tutorials.gif"; }
	}
}

function miniover(img_name){
	var i=1;
	for (i=1;i<20;i++){
		if (img_name == "img_" + i){ document[img_name].src="http://www.hazelwhorley.com/images/minipreviews/" + i + "d.jpg"; }
	}
}

function miniout(img_name){
	var i=1;
	for (i=1;i<20;i++){
		if (img_name == "img_" + i){ document[img_name].src="http://www.hazelwhorley.com/images/minipreviews/" + i + ".jpg"; }
	}
}
