		var max_f_post_height = 0;
		var mouse_over = false;
		jQuery(document).ready(function () {
			function init_fader(){
				jQuery('#general_posts .single_fp').each(function(){
					if(max_f_post_height<jQuery(this).height()){
						max_f_post_height = jQuery(this).height();
					}
				});
				jQuery('#general_posts .middle').css({
					height : max_f_post_height //+ jQuery('#general_posts .header-left').height() + jQuery('#general_posts .footer-left').height()
				});
				jQuery('#general_posts').bind('mouseover',function(){
					mouse_over = true;
				})
				jQuery('#general_posts').bind('mouseout',function(){
					mouse_over = false;
				})
			}
			function do_fade(_el){
				if(mouse_over)
				    return;
				var next = jQuery(_el).next('.single_fp');
				if(!next.length){
					next = jQuery(_el).prev('.single_fp');
				}
				if(next.length){
					jQuery(_el).fadeOut('slow',function(){jQuery(_el).removeClass('shown');});
					next.fadeIn('slow',function(){jQuery(next).addClass('shown');});
				}
			}
			init_fader();
			var the_timer = setInterval(function(){
				do_fade(jQuery('#general_posts .single_fp.shown'));
			},10000);
		});