/* ================================================================ 
This copyright notice must be untouched at all times.
Copyright (c) 2009 Stu Nicholls - stunicholls.com - all rights reserved.
=================================================================== */
$(document).ready(function(){
	
	setTimeout(function(){$('#logo').animate({"top": ["0px", "easeOutExpo" ]}, 1000);},0);
	
	$('#izq').css("opacity", "0");
	$('#der').css("opacity", "0");

	setTimeout(function(){$('#izq').animate({"left": ["0px", "easeOutExpo" ], "opacity": ["1", "swing"]}, 1000);},100);
	setTimeout(function(){$('#der').animate({"left": ["22px", "easeOutExpo" ], "opacity": ["1", "swing"]}, 1000);},100);
	
	$('#abajo').css("opacity", "0");

	setTimeout(function(){$('#abajo').animate({"top": ["490px", "easeOutBack" ], "opacity": ["1", "swing"]}, 800);},400);
	
	$('#verflash').css("opacity", "0");
	$('#verhtml').css("opacity", "0");

	setTimeout(function(){$('#verflash').animate({"left": ["45px", "easeOutBack" ], "opacity": ["1", "swing"]}, 800);},600);
	setTimeout(function(){$('#verhtml').animate({"left": ["30px", "easeOutBack" ], "opacity": ["1", "swing"]}, 800);},600);

$("#verflash").mouseover(function(){
	setTimeout(function(){$('#verflash').animate({"top": ["5px", "easeOutExpo" ]}, 500);},0);
});
$("#verflash").mouseout(function(){
	setTimeout(function(){$('#verflash').animate({"top": ["0px", "easeOutExpo" ]}, 500);},0);
});
$("#verflash").click(function(){
	window.open("http://www.postermedia.com.mx/flash.html", "_parent")
});

$("#verhtml").mouseover(function(){
	setTimeout(function(){$('#verhtml').animate({"top": ["5px", "easeOutExpo" ]}, 500);},0);
});
$("#verhtml").mouseout(function(){
	setTimeout(function(){$('#verhtml').animate({"top": ["0px", "easeOutExpo" ]}, 500);},0);
});
$("#verhtml").click(function(){
	window.open("http://www.postermedia.com.mx/html/", "_parent")
});



});





