// Popup Javascript
$(function(){
	setTimeout(function(){
		$('#popup').css('height', '0').animate({opacity: 1, height: '115px'}, 250);
	}, 2000);
	
	$('a#close').click(function(){
		$(this).parent().fadeOut();
		setTimeout(function(){ $('#popup').remove(); }, 500);
		return false;
	});
});
