$(function() {
			
	/* Featured Rotation */
			
	var featuredContainer = $( 'div#featured-post > div' );
	featuredContainer.hide().filter( ':first' ).show();
		
	$( '#featured-scroll > li > a' ).click( function () {
		
		featuredContainer.hide();
		featuredContainer.filter( this.hash ).show();
		
		$( '#featured-scroll > li > a' ).removeClass( 'active' );
		$( this ).addClass( 'active' );
		
		return false;
	
	} ).filter( ':first' ).click();
	
	/* Tabber */
	
	var tabberContainer = $( 'div#tabber-container > ul' );
	tabberContainer.hide().filter( ':first' ).show();
		
	$( '#tabber-navigation > li > a' ).click( function () {
		
		tabberContainer.hide();
		tabberContainer.filter( this.hash ).show();
		
		$( '#tabber-navigation > li > a' ).removeClass( 'active' );
		$( this ).addClass( 'active' );
		
		return false;
	
	} ).filter( ':first' ).click();
	
	/* Related Posts Drop Down */
	
	$( '.category-drop' ).click( function() {
		$( this ).toggleClass( 'view-related-active' )
		$( this ).siblings( '.dropdown' ).toggle();
		$( this ).find( '.indicator' ).toggleClass( 'indicator-active' );
		return false;
	} );
			
});
