// jQuery
$(function(){
	/*
	$('#selecao-idioma').hoverIntent(function(){
		$(this).children().not('.ativo').each(function(i){
			$(this).animate({'right':(75*(i+1))+'px'});
		});
	},function(){
		$(this).children().not('.ativo').each(function(i){
			$(this).animate({'right':'0'});
		});
	});
	*/
	$_ph = $('#principal').height();
	$_ch = $('#container').height();
	$_wh = $(window).height();
	if($_ch < $_wh) {
		$_nh = $_ph + ($_wh - $_ch);
		$('#principal').height($_nh+'px');
	}
});
