$(document).ready(function() {
	
	// IE PNG Fix
	if (document.all && document.styleSheets && document.styleSheets[0] && document.styleSheets[0].addRule){
		//document.styleSheets[0].addRule('*', 'behavior: url(js/iepngfix.htc)');
	}else{
		
		$("#menu li").children("a").before("<span class=\"vert\">&nbsp;</span>");
		$("#menu li").children(".vert").css("opacity","0");
		
		$("#menu li").hover(function() {
			$(this).children().stop();
			$(this).children("span").stop().animate({opacity:1},200);
		},function() {
			$(this).children("span").stop().animate({opacity:0},400);
		});
	}
});
