// JavaScript Document
$(document).ready(function(){
	
	$("#menu_geral a").mouseover(function(){
		$(this).parent().css("background-image","url(_img/home_botao_o.png)");
	});
	$("#menu_geral a").mouseout(function(){
		$(this).parent().css("background-image","url(_img/home_botao.png)");
	});
	
	$("#portfolio a").mouseover(function(){
		$(this).parent().css("background-image","url(_img/home_botao_o.png)");
	});
	$("#portfolio a").mouseout(function(){
		$(this).parent().css("background-image","url(_img/home_botao.png)");
	});
	
	$(document).ready(function(){
		$(".colorbox_html").colorbox({opacity:0.8, width:750});
	
	});
	
	ajustar_geral();
	$("#geral").fadeIn("normal");
	
	
	
});
$(window).resize(function(){
	ajustar_geral();
});

function ajustar_geral(){
	var largura=$(window).width();
	var altura=$(window).height();
	var vtop=(altura/2)-(560/2);
	if(vtop<0){
		$("#geral").css("top","0px");	
	}else{
		$("#geral").css("top",vtop+"px");	
	}
	if(largura<780){
		$("#geral").css("width","780px");
	}else{
		$("#geral").css("width","100%");
	}
}

