$(document).ready(function(){
	$(".homeHover").hoverIntent(
		function () {
			$(this).children().show();
		},
		function () {
			$(this).children().hide();
		}
	);		
	$("ul.sf-menu").superfish({ 
    	pathClass:  'current' 
    });
	$(document).pngFix();
});