/**
 * jq_info May 2011 Version 1.0
 * Maritta Sturt
 * Copyright (c) M. Sturt 
 */

$(function() {

	$('a.info').click(function() {
		hideInfo();
		return false;
	});

	setTimeout(function(){showInfo();}, 3000);
	
	function showInfo() {
		$('#info').stop(true,true).animate({top: 0}, {
					duration: 4000 
		}); 
	}
	function hideInfo() {
		$('#info').stop(true,true).animate({top: -323}, {
					duration: 2000 
		}); 
	}	
	
});//function
