$j( document ).ready( function() {
    $j( '.seeOther' ).click( function() {
        $j( '.seeOther' ).hide();
        $j( '.pageTitle' ).hide();
        $j( '.mediaBox' ).hide();

        if ( $j( this ).attr( 'id' ).indexOf( 'ideo' ) > -1 ) {
            $j( '#videosTitle' ).show();
            $j( '#videosBox' ).show();
            $j( '#seePhotos' ).show();
            $j( '#flashWarning' ).show();
        } else {
            $j( '#photosTitle' ).show();
            $j( '#photosBox' ).show();
            $j( '#seeVideos' ).show();
            $j( '#flashWarning' ).hide();
        }
    } );

    $j( '#seeVideos' ).click();

    $j( '.seeOther' ).hover( function() {
        $j( this ).addClass( 'seeOtherHover' );
    }, function() {
        $j( this ).removeClass( 'seeOtherHover' );
    } );

    $j( '.showGallery' ).click( function() {
        $j( this ).parents( 'div.galleryLink' ).find( 'a:first' ).click();
    } );
} );
