jQuery(function($){
	
	// IE last-child selectors
	$('#subnav li:first-child').addClass('first');
	$('.home .tombstone:last-child').addClass('last');
		
	
	//dropdown menu
	$('#nav ul').superfish({
		speed: 'fast',
	    delay: 100,
	    animation:   {opacity:'show',height:'show'},
	    autoArrows:    false
	});
	
	
	// Featured posts
	$('#feature #slides').cycle({ 
	    fx:     'fade',
	    speed:  1500, 
	    timeout: 8000, 
	    pager: '#pager' 
	});

});

