
window.onload = function(){
	CopyHeight('esq','dir');
}
function CopyHeight(){
	var heights = [];
	for (var i = 0; i < arguments.length; i++)
		heights.unshift(document.getElementById(arguments[i]).offsetHeight);
	hT = heights.sort(function(a,b){ return a - b }).reverse()[0]; //ninja *[1]
	for (var i = 0; i < arguments.length; i++)
		document.getElementById(arguments[i]).style.height = hT+'px';
}
// flash code home //
$(document).ready(function(){
    $('#intro').flash(
        { src: 'swf/hit.swf',
          width: 450,
          height: 285
	});
});
// flash code about ( quem somos ) //
$(document).ready(function(){
    $('#intro_about').flash(
        { src: 'swf/about.swf',
          width: 450,
          height: 285
	});
});

// Galeria portfolio //
function pictures(b, c){
	document.getElementById("pictures").style.backgroundImage="url(admin/img/eventos/maquiadores/" + b + "/img" + c + ".jpg)";
	document.getElementById("pictures").style.backgroundPosition="center";	
}
// Fotos de grifes //
function grifes(a, b, c){
	document.getElementById("photo").style.backgroundImage="url(admin/img/eventos/" + a + "/" + b + "/" + c + ")";
	document.getElementById("photo").style.backgroundPosition="center";	
}
function voltar(){window.history.back();}