// JavaScript Document


// JQuery IEPNG fix
$(document).ready(
	function() {
	// apply ifixpng
	$("#test").superfish({
		animation : { opacity:"show"}
	});
	$('img[@src$=.png]').ifixpng();
	$('.subNav a').css('opacity',0.95);
	
	
$("#leftNav ul li").mouseover(function(){
	$(this).addClass("hover");
});
$("#leftNav ul li").mouseout(function(){
	$(this).removeClass("hover");
});
	
	
});

