$(document).ready(function() {
	// Main nav dropdown
	$('li.nav-item').hover(
		function() { $('.dropdown', this).slideDown(100); },
		function() { $('.dropdown', this).slideUp(100); }
	);
	
	// Homepage recent posts
	$('#section-content').cycle({ 
		fx:     'fade', 
		speed:  'fast', 
		timeout: 0, 
		pager: '#section-nav',
		pagerAnchorBuilder: function(idx, slide) {
			// return selector string for existing anchor
			return '#section-nav li:eq(' + idx + ') a';
		}
	});
	
	// Homepage carousel
	jQuery('#projects-gallery').jcarousel();
});