$( document ).ready ( function ()
{
    max = 181;
    min = 125;
    
    previous = $( "#last" );
    
    $( "#tabs li" ).hover ( function ()
    {
        if ( $( this ).attr ( "id" ) == "last" )
        {
            max = 190;
            
            $( "div#tabs ul" ).addClass ( "last" );
        };
        
        $( previous ).animate ( { width: min + "px" }, { queue: false, duration: 400 } );
        $( this ).animate ( { width: max + "px" }, { queue: false, duration: 400 } );
        
        $( "#tabs li" ).addClass ( "standard" );
        $( this ).removeClass ();
        
        previous = this;
    },
    
    function ()
    {
        $( "#tabs ul" ).removeClass ();
        $( "#tabs li" ).removeClass ();
    });
	
	$( "ul.gallery a" ).prepend ( "<span></span>" );
    
    $( "ul.gallery a" ).fancybox

    ({
        'hideOnContentClick': true,
		'zoomSpeedIn':	400, 
		'zoomSpeedOut': 400, 
		'overlayShow':	true,
		'overlayOpacity': 0.75
	});
});



