var $j = jQuery.noConflict();

$j(document).ready(function() {
	
	$j('#item-holder').cycle({ 
	   	fx:     'fade', 
	   	speed:  'slow', 
	   	timeout: 8000, 
	   	pager:	'#pager'
	});
	
	
	$j('.item').hover(
		function(){
			$j('.recent-title').fadeIn('slow');
		},	
		function(){
			$j('.recent-title').fadeOut('slow');
			
		}
	);
	

	//nav
		$j('#nav li a').hover(
		
		function(){
			
			$j(this).animate({top: "+=2"},90);	
		
		},
		function(){
	
			$j(this).animate({top: "-=2"},90);
	
		}
	);

				
});
