		<!--
		function getWindowHeight() {
			var windowHeight = 0;
			if (typeof(window.innerHeight) == 'number') {
				windowHeight = window.innerHeight;
			}
			else {
				if (document.documentElement && document.documentElement.clientHeight) {
					windowHeight = document.documentElement.clientHeight;
				}
				else {
					if (document.body && document.body.clientHeight) {
						windowHeight = document.body.clientHeight;
					}
				}
			}
			return windowHeight;
		}
		function setFooter() {
			if (document.getElementById) {
				var windowHeight = getWindowHeight();
				if (windowHeight > 0) {
					var contentHeight = document.getElementById('main').offsetHeight;
					var footerElement = document.getElementById('rodape');
					var footerHeight  = footerElement.offsetHeight;
					if (windowHeight - (contentHeight + footerHeight) >= 0) {
						footerElement.style.position = 'absolute';
						footerElement.style.top = (windowHeight - footerHeight) + 'px';
					}
					else {
						footerElement.style.position = 'static';
					}
				}
			}
		}
		window.onload = function() {
			setFooter();
		}
		window.onresize = function() {
			setFooter();
		}
		//-->
		



var arVersion = navigator.appVersion.split("MSIE")
var version = parseFloat(arVersion[1])

function fixPNG(myImage) 
{
        if ((version >= 5.5) && (version < 7) && (document.body.filters)) 
        {
           var imgID = (myImage.id) ? "id='" + myImage.id + "' " : ""
           var imgClass = (myImage.className) ? "class='" + myImage.className + "' " : ""
           var imgTitle = (myImage.title) ? 
                                         "title='" + myImage.title  + "' " : "title='" + myImage.alt + "' "
           var imgStyle = "display:inline-block;" + myImage.style.cssText
           var strNewHTML = "<span " + imgID + imgClass + imgTitle
                                  + " style=\"" + "width:" + myImage.width 
                                  + "px; height:" + myImage.height 
                                  + "px;" + imgStyle + ";"
                                  + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
                                  + "(src=\'" + myImage.src + "\', sizingMethod='scale');\"></span>"
           myImage.outerHTML = strNewHTML         
        }
}




	
//Chama flash no site (correção do IE)
function flash(swf, width, height, wmode, cache)
{
noCache = cache || cache == undefined ? "" : "?" + new Date();
wmode = wmode || wmode == undefined ? "opaque" : "transparent";

monta_swf = "";
monta_swf += "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\" width=\""+ width +"\" height=\""+ height +"\" title=\"\">";
monta_swf += "<param name=\"movie\" value=\""+ swf + noCache +"\" />";
monta_swf += "<param name=\"quality\" value=\"high\" />";
monta_swf += "<param name=\"menu\" value=\"0\" />";
monta_swf += "<param name=\"wmode\" value=\"transparent\" />";
monta_swf += "<embed src=\""+ swf + noCache +"\" quality=\"high\" wmode=\"transparent\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\""+ width +"\" height=\""+ height +"\"></embed>";
monta_swf += "</object>";

document.write(monta_swf);
}





		var min=11;
		var max=20;
 
		function aumentaFonte() {
			var p = document.getElementById('paragrafo');

				if(p.style.fontSize) {
					var s = parseInt(p.style.fontSize.replace("px",""));
				} else {
					var s = 12;
				}
				if(s!=max) {
					s += 1;
				}
				p.style.fontSize = s+"px"
				p.style.lineHeight = 1.6
			}

 
		function diminuiFonte() {
			var p = document.getElementById('paragrafo');

				if(p.style.fontSize) {
					var s = parseInt(p.style.fontSize.replace("px",""));
				} else {
					var s = 12;
				}
				if(s!=min) {
					s -= 1;
				}
				p.style.fontSize = s+"px"
			}

		

