var hadis_timers = new Array();
function hadis_slide(hadis_content_id) {
	var hc_id = $('#'+hadis_content_id);
	var hc_clip = hc_id.parent();
	if(hc_id.position().top-32 <= -hc_id.innerHeight()) {
		hc_id.fadeOut('slow', function() {
			$(this).css({'top': 0}).fadeIn('slow',function() {
				clearTimeout(hadis_timers [$(this).attr('id')]);
				hadis_timers [$(this).attr('id')] = setTimeout("hadis_slide('"+$(this).attr('id')+"');",5000);
			});
		});
	} else {
		hc_id.animate({top: '-=24'},function() {
			clearTimeout(hadis_timers [$(this).attr('id')]);
			hadis_timers [$(this).attr('id')] = setTimeout("hadis_slide('"+$(this).attr('id')+"');",5000);
		});
	}
}
$(document).ready(function() {
	$('.hadis-dnya .hadis-content').each(function() {
		$(this).hide();
		$(this).fadeIn('slow',function() {
			$(this).mouseenter(function() {
				clearTimeout(hadis_timers [$(this).attr('id')]);
			}).mouseleave(function() {
				hadis_timers [$(this).attr('id')] = setTimeout("hadis_slide('"+$(this).attr('id')+"');",5000);
			});
			hadis_timers [$(this).attr('id')] = setTimeout("hadis_slide('"+$(this).attr('id')+"');",5000);
		});
	});
});
