// JavaScript Document

$(document).ready(function() {

    /* SLIDEIN DIV */
	
	div = jQuery('#slidein');
		duration = 2000;
		
		div.css({
				left:Math.round((jQuery(window).width() - div.width()) / 2),
				top:-div.height()
			})
			.animate(
				{top:Math.floor((jQuery(window).height() - div.height()) / 2)},
				duration,
				function(){
					jQuery('#close_slidein').click(function(){div.fadeOut()});
				}
			);
	
});
