jQuery.preloadImages = function()
{
	for(var i = 0; i<arguments.length; i++)
	{
		jQuery("<img>").attr("src", arguments[i]);
	}
};

$.preloadImages("/0/img/nav/home.gif",
"/0/img/nav/about.gif",
"/0/img/nav/new_vehicles.gif",
"/0/img/nav/used_vehicles.gif",
"/0/img/nav/financing.gif",
"/0/img/nav/parts.gif");


$(document).ready( function() { 
  $("#navhome img").bind("mouseover", function() { $(this).attr("src", "/0/img/nav/home_hover.gif"); });
  $("#navhome img").bind("mouseout", function() { $(this).attr("src", "/0/img/nav/home.gif"); });
  $("#navabout img").bind("mouseover", function() { $(this).attr("src", "/0/img/nav/about_hover.gif"); });
  $("#navabout img").bind("mouseout", function() { $(this).attr("src", "/0/img/nav/about.gif"); });
  $("#navnvehicles img").bind("mouseover", function() { $(this).attr("src", "/0/img/nav/new_vehicles_hover.gif"); });
  $("#navnvehicles img").bind("mouseout", function() { $(this).attr("src", "/0/img/nav/new_vehicles.gif"); });
  $("#navuvehicles img").bind("mouseover", function() { $(this).attr("src", "/0/img/nav/used_vehicles_hover.gif"); });
  $("#navuvehicles img").bind("mouseout", function() { $(this).attr("src", "/0/img/nav/used_vehicles.gif"); });
  $("#navfinancing img").bind("mouseover", function() { $(this).attr("src", "/0/img/nav/financing_hover.gif"); });
  $("#navfinancing img").bind("mouseout", function() { $(this).attr("src", "/0/img/nav/financing.gif"); });
   $("#navparts img").bind("mouseover", function() { $(this).attr("src", "/0/img/nav/parts_hover.gif"); });
  $("#navparts img").bind("mouseout", function() { $(this).attr("src", "/0/img/nav/parts.gif"); });
  });
