// JavaScript Document

$(document).ready(function() {

	$("ul#topnav li").hover(function() { //Hover over event on list item
		$(this).find("ul").show(); //Show the subnav
		$(this).find("img").hide(); 
		$(this).find("img.hover").show(); 
	} , function() { //on hover out...
		$(this).css({ 'background' : 'none'}); //Ditch the background
		$(this).find("ul").hide(); //Hide the subnav
		$(this).find("img").show(); 
		$(this).find("img.hover").hide(); 
	});
	
	$("ul#topnav").hover(function(){},function(){
		$("ul#topnav li.active img").hide();
		$("ul#topnav li.active img.hover").show();
		$("ul#topnav ul.active").show();
	});
	
	$("ul#topnav li.active img").hide();
	$("ul#topnav li.active img.hover").show();
	$("ul#topnav ul.active").show();
});

