jQuery(document).ready(function(){

	 jQuery('a[rel*=facebox]').facebox();


	jQuery('#popup').css({
		top:'-'+jQuery('#popup').height()+'px'
	}).css({
		display:'block'}
	).animate({
		top:'10px'
	},1000);
	
	jQuery('#popup a.close').bind(
		'click',
		function(){
			jQuery('#popup').animate({
				top:'-'+(jQuery('#popup').height()+15)+'px'
			},1000)
		}
	);

	
});

