// popup div for email signup form
// Brian Hofflander
// javascript code

$(document).ready(function (){

	$("#popupbox").hide();
	$("#popupbox").css({height:'0', top:'222px'});

	$('#email a').click(function(){
		$("#popupbox").show();
		$('#popupbox').animate({height:'150px', top:'70px'},{queue:false, duration:500});
	});

	$('#closepopup').click(function(){
		$('#popupbox').animate({height:'0', top:'222px'},'slow',function(){$('#popupbox').hide()});
	});
});

