 jQuery(function() {

	jQuery(".tabs").cycle({
		fx:     "fade", 
		speed:  "slow", 
		timeout: 5000,
		pager:  "#feature_nav", 
		pause:1,
		next:   ".next", 
		prev:   ".prev" 
	}).after('<div id="feature_nav">');	
	
	 jQuery('#feature_box a.next, #feature_box a.prev, .feature_box a.next, .feature_box a.prev').hover(function() {
		jQuery(this).fadeTo("fast", 0.5);
	},
	function () {
		jQuery(this).fadeTo("fast", 1);
	});
	

		

	 
});
 
 
  jQuery(function() {

		
	 jQuery('.custom .nbutts a').hover(function() {
		jQuery(this).fadeTo("slow", 1);
	});
	 
		 jQuery('.custom .nbutts a').mouseleave(function() {
		jQuery(this).fadeTo("fast", 0.6);
	}); 

		

	 
});


