jQuery(function(){

    $(".post a").hover
	     (
		function()
		{
			$(this).children("span").fadeOut(200);
		}
		,function()
		{
			$(this).children("span").fadeIn(500);
		}
	);
	
		
//<![CDATA[
	jQuery('#slider').cycle({
		timeout: 3500, 
		speed: 300,
		fx: 'scrollLeft',
		next: '#next-item', 
		prev: '#prev-item'
	});
//]]>
});