$(document).ready(function() 
{
	if(!$.browser.msie){
		$("body").css("display", "none");

		$("body").fadeIn(2000);
	}
    
	$("a.transition").click(function(event){
		event.preventDefault();
		linkLocation = this.href;
		if(!$.browser.msie){
			$("body").fadeOut(1000, redirectPage);	
		}
		else{
			redirectPage();
		}
	});
    
	$("a.transition2").click(function(event){
		event.preventDefault();
		linkLocation = this.href;		
		if(!$.browser.msie){
			$("body").fadeOut(1000);
		}
	});
		
	function redirectPage() {
		window.location = linkLocation;
	}
	
	// scroll para el texto
	var alt = $(window).height()-$('.cliente').height()-$('.agencia').height()-400;
	$('#content #contenido_trabajos .texto').css('height',alt+'px');
	
	$(window).bind("resize", function(){
		var alt = $(window).height()-$('.cliente').height()-$('.agencia').height()-400;
		$('#content #contenido_trabajos .texto').css('height',alt+'px');
	});
});
