$(document).ready(function(){
	window.setTimeout("showPopup()", jQuery.popupDelayTime);
});

jQuery.popupDelayTime = 0;

function closePopup() {
	$('#popup').fadeOut();
}

function showPopup() {
	$('#popup').effect("bounce", { times:5 }, 300);
}
