jQuery(function(){
	jQuery('#whatis a.closebox').click(function(){
		var exdate=new Date();
		exdate.setDate(exdate.getDate()+1825);
		document.cookie='whatisfc_close=1;expires='+exdate.toGMTString()+';path=/';
		
		jQuery('#whatis').animate({'paddingBottom':'0px'}, 'slow');
		jQuery('#whatis').addClass('collapsed');
		jQuery('#whatis-text').slideUp('normal', function(){
			
		});
		return false;
	});
	jQuery('#whatis a.expandlink, #whatis a.readmorelink').click(function(){
		jQuery('#whatis').animate({'paddingBottom':'28px'}, 'normal');
		jQuery('#whatis-text').slideDown();
		jQuery('#whatis').removeClass('collapsed');
		return false;
	});
});
