jQuery.noConflict();
	
jQuery(document).ready(function () {

princ();



});

function princ()
{
	jQuery("#menu li").hover(compIn, compOut);
	
	function compIn()
	{
		jQuery("ul", this).fadeIn("fast");
	}
	
	function compOut()
	{
		jQuery("ul", this).fadeOut("fast");
	}
	
	//DELAY
	setTimeout(reposit, 1000);
	
	function reposit()
	{
		var a = "";
		
		do
		{
			a = (jQuery("#conteudo h3").html());
		}
		while (a == "<p>Carregando...</p>")
		
		jQuery("#conteudo h3").css("display", "none");
		jQuery(".galeriaFotos h3").css("display", "block");
		jQuery("#titCap").css("display", "block");
		
		jQuery("#titCap").html(a);
		jQuery("#titCap").css("color", "#000066");
		jQuery("#titCap").css("fontWeight", "bold");
		jQuery("#titCap").css("fontSize", "12px");
		jQuery("#titCap").css("marginTop", "-23px");
		jQuery("#titCap").css("marginLeft", "228px");
	}
}
