// JavaScript Document
$(document).ready(function(){
	
	$(document).pngFix();

		$("ul#topnav li").hover(function() {
		$(this).css({ 'background' : '#FF6600'});
		$(this).find("a").css({'color' : '#FFF'});
		$(this).find("span").show();
		} , function() { 
		$(this).css({ 'background' : 'none'}); 
		$(this).find("a").css({'color' : '#FFF'});
		$(this).find("span").hide(); 
	});
	
		
});
