jQuery( function($) {

	if( $('#slideshow #imgs').length > 0 ) {
		$('#slideshow #imgs').cycle({ 
			fx:    'fade', 
			speed:  2500 
		});
	}
	 
	$("select, input:checkbox, input:radio, input:file").uniform();

	/* Page Sectionbar List */
	$('.page .hentry h3').each(function(index) {
		$(this).before('<a name="section' + index + '">').after('</a>');
		$('#sectionbar #sections').append('<li><a href="#section' + index + '">' + $(this).text() + '</a></li>');
	});
	
});
