$('#top_banner').cycle({ 
    fx:    'fade', 
    speed:   700, 
    timeout: 3000
 });

$('a.lightbox').lightBox();

$( '#header h1' ).bind( 'click', function() { window.location.href = '/'; } );

var parts = window.location.pathname.split( '/' );
if( ! parts[1] )
{
	$( '#nav a:first' ).parent().addClass( 'active' );
}
else
{
	$( '#nav a' ).each( function()
	{
		if( $( this ).attr( 'href' ).indexOf( parts[1] ) > -1 )
		{
			$( this ).parent().addClass( 'active' );
			return false;
		}
	} );
}

