$(document).ready(function(){
	$('#nav li.report').hover(
		function() { $('ul', this).css('display', 'block'); },
		function() { $('ul', this).css('display', 'none'); }
	);
	pngfix();
});


/* ping fix
**************************************************************/
function pngfix(){ if(navigator.userAgent.match (/MSIE (5\.5|6\.)/)){for(var i=0; i<document.images.length; i++){
	var img = document.images[i];if (img.src.match (/\.png/i)){ var imgStyle = "display:inline-block;";
	if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle;
	var html = "<span style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'" + img.src + "\', sizingMethod='image');\"></span>";img.outerHTML = html;i = i-1;}}}}




