$(function() {
	$('#activator').click(function(){
		$('#overlay').fadeIn('fast',function(){
			$('#box').animate({'top':'160px'},500);
		});
	});
	$('#boxclose').click(function(){
		$('#box').animate({'top':'-402px'},500,function(){
			$('#overlay').fadeOut('fast');
		});
	}); 
});



if (jQuery.browser.msie && jQuery.browser.version == 6) {
	var width = $(window).width();
	var height = $(window).height();
	var pageHeight = document.body.clientHeight;
	if (pageHeight > height) {
		height = pageHeight;
		};
		$("#overlay").css({
						  width: width, height: height
						  });
		$(function() {
				   $('#boxclose').click(function(){
						$("#box").animate({'top':'-700px'},500);
												 });
				   });
}
