 jQuery(function() {

	jQuery(".feature_box_ul").cycle({
		fx:     "fade", 
		speed:  "slow", 
		timeout: 3500,
		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('.expand').click(function() {
									 //.alert('clicked');
	jQuery(this).next('.body').slideToggle('slow'); 
	jQuery(this).next('.cell').css('background-color','#492137'); 
	})

});