// 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;
	});
});*/

$(function(){	
	setTimeout(function(){
		$('#popup').stop(true).animate({opacity: 1, left: '0'}, 150);
	}, 2000);
	
	$('a#close').click(function(){
		$(this).parent().fadeOut();
		setTimeout(function(){ $('#popup').remove(); }, 500);
		return false;
	});
});
