function mostraFlash(src, larg, alt, wmode){
	var flash = '<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="'+ larg +'" height="'+ alt +'">';
	flash += '<param name="movie" value="'+ src +'" />';
	flash += '<param name="allowScriptAccess" value="sameDomain" />';
	flash += '<param name="menu" value="false" />';	
	flash += '<param name="wmode" value="'+ wmode +'" />';	
	flash += '<embed src="'+ src +'" pluginspage="http://www.macromedia.com/go/getflashplayer" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" width="'+ larg +'" height="'+ alt +'" menu = "false" wmode = "'+ wmode +'"></embed>';
	flash += '</object>';	
	
	document.write(flash);
}

$(document).ready(function() {
	
	/* Logo EGGE*/
	$('#egge').find('img').mouseover(function(){
		$(this).attr('src', 'www/imagens/site/ico_egge2.png');
		$(this).stop().animate({width:'54px', 'margin-right':'-10px', 'margin-top':'-10px'},{queue:false, duration:1500, easing: 'easeOutElastic'});
	});
	
	$('#egge').find('img').mouseout(function(){
		$(this).attr('src', 'www/imagens/site/ico_egge.png');
		$(this).stop().animate({width:'34px', 'margin-right':'0px', 'margin-top':'0px'},{queue:false, duration:500, easing: 'easeInOutExpo'});
	});	

	$('#top').click(function(e){
		e.preventDefault();
		$('html, body').animate({scrollTop: $('#header').offset().top}, 2000);
	});
});
