/// <summary>
/// The Generic class adds the javascript logic for use throughout the site.
/// </summary>

//Handle hover over/out images for franchise logos in header.
$(document).ready(function(){   	
	$("div#manufacturerHeaderPanel > div > a.mfrAnchor").hover(
		function() {
			($(this).find("img.mfrOut")).fadeOut("slow");
			($(this).find("img.mfrOver")).fadeIn("slow");
		},
		function() {
			($(this).find("img.mfrOut")).fadeIn("slow");
			($(this).find("img.mfrOver")).fadeOut("slow");
		}
	);
});
