// JavaScript Document

$(function() {
	if ($('body').height() < 650) {
		$('#language a').each(function() {
			this.href = 'javascript: window.open(\''+ this.href +'\', \'_blank\', \'width=1024, height=700, toolbar=false\');void(0);';
		});
	}
});

$(window).load(function() {
	$('#fondo').fadeIn(4000);
	check_background_style();
});

$(window).resize(function() {
	check_background_style();
});

function check_background_style() {
	if ($('#page #fondo').width() > $('#page #fondo img').width()) $('#page #fondo img').css({rigth:'auto', left:'0px'});
	else $('#page #fondo img').css({rigth:'0px', left:'auto'});
}

