function getPermission(text){
	var answer = confirm(text);
	
	if(answer == false){
		return false;
	}else{
		return true;
	}
}

function check(){
	if(!$.cookie('animated')){
		animateLogo();
		//alert('animated');
	};
}

function animateLogo(){
	$('#logo').fadeIn(3000);
	$('#logo').css('display', 'block');
	$.cookie('animated', 1);
}


