$(document).ready
(
	function()
	{
		if ($.browser.msie == true && $.browser.version < 7)
		{
			//Correção de PNG para o IE
			$("img[@src$=.png][class~=fixPNG]").each
			(
				function()
				{
					$(this).attr("src", $(this).attr("src").replace(/\.png/,"-8.png"))
					//$(this).attr("height","8")
				}
			)
		}
	}
)