// JavaScript Document
var j = jQuery.noConflict();

j(document).ready(function() {
	//j('.intro').hide();
	if(j.cookie("intro")!="hide"){
		j.cookie("intro", "hide");
		ejecutarIntro();
	}
});


function ejecutarIntro() {
	j('body').append('<div class="intro"></div>');
	j('.intro').show();
	j('.intro').css({
		width: j('body').width(),
		height: j('body').height()
	});
	j('.intro').fadeOut(2500);	
}
