$(document).ready(function(){
   	
	$('#nav-main li[class!="act"] a').hover(
	      function () {
			$(this).css({ color:"#ffffff" });
			$(this).animate({color:"#000000"}, 1000)
	      }, 
	      function () {
		    $(this).stop();
	        // $(this).animate({ color:"#ffffff"}, 500);
			$(this).css({ color:"#ffffff" });
	      }
	    );
		
	// IE6 PNG-Fix	
	$('div#strip').ifixpng();
});

