// JavaScript do Menu
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("menu");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace
	(" over", "");
   }
   }
  }
 }
}
window.onload=startList;

// Titulo
$(document).ready(function(){
						   
	$('h1').flash(
	{ 
		src: 'swf/frutiger_55.swf', 
		flashvars: { 
			css: [
				'* { color:#464646; }',
			].join(' ')
		},
		wmode: "transparent"
	},
	
	{ version: 7 },
	function(htmlOptions) {
		htmlOptions.flashvars.txt = this.innerHTML;
		this.innerHTML = '<div>'+this.innerHTML+'</div>';
		var $alt = $(this.firstChild);
		htmlOptions.height = 26;
		htmlOptions.width = 300;
		$alt.addClass('alt');
		$(this)
		.prepend($.fn.flash.transform(htmlOptions));						
	}
	);
	
	$('h2').flash(
	{ 
		src: 'swf/frutiger_55.swf', 
		flashvars: { 
			css: [
				'* { color:#464646; }',
			].join(' ')
		},
		wmode: "transparent"
	},
	
	{ version: 7 },
	function(htmlOptions) {
		htmlOptions.flashvars.txt = this.innerHTML;
		this.innerHTML = '<div>'+this.innerHTML+'</div>';
		var $alt = $(this.firstChild);
		htmlOptions.height = 20;
		htmlOptions.width = 300;
		$alt.addClass('alt');
		$(this)
		.prepend($.fn.flash.transform(htmlOptions));						
	}
 );
  
});
