
function tabs(id,el){
	$(el).addClass('active');
	if(id==1){
		$('#form1').removeClass('active');
		$('.dsry').css('background-position','bottom left');
	} else {
		$('#form2').removeClass('active');
		$('.dsry').css('background-position','top left');
	}
}
function resizeSidebar(){
	var ch = $('#main').height();
	ch = ch-372;
	$('#side-banners').height(ch);
}
$(function(){
	//resizeSidebar();
	//Tabs do contato
	$('a[rel="contato"]').click(function(){
		tabs(2, '#form1');
		return false;
	});
	$('a[rel="trabalhe"]').click(function(){
		tabs(1, '#form2');
		return false;
	});
	$('.inicio .cols .col').hover(function(){
		$(this).find('span.legenda').fadeIn();
	},function(){
		$(this).find('span.legenda').fadeOut();
	});
});
