$(document).ready(function(){
    /*$('header ul li.galleries').toggle(
        function(){
            $('ul',this).show();
        },
        function(){
            $('ul',this).hide();
        }
    )*/
    $('header ul li.galleries').mouseover(function(){
        $('ul',this).show();
    });
    $('header ul li.galleries').mouseout(function(){
        $('ul',this).hide();
    })
    $('div#content div#description').addClass('hide_description');

    $('div#content img').live('mouseover',function(){
        $('div#content div#description').animate({
            opacity: 1,
            marginTop: '-85px',
            height: '70px'
        },400)
    });
    $('div#content img').live('mouseout',function(){
        $('div#content div#description').animate({
            opacity: 0,
            marginTop: '-15px',
            height: '0px'
        },400)
    });
    
    var total = $('div#photo_menu ul li').length;
    var counter = 0;
    $('span#move_up').click(function(){
        if((counter) > 0){
            counter-=1;
            $('div#photo_menu ul li:first').animate({
                marginTop: '+=98px'
            });
        }
    });
    $('span#move_down').click(function(){
        if((total - counter - 5) > 0){
            counter+=1;
            $('div#photo_menu ul li:first').animate({
                marginTop: '-=98px'
            })
        }
    });
    $('div#photo_menu ul li a').click(function(){
        $('div#content').css('background-image','none');
        $('div#content').load($(this).attr('href'));
        $('div#content div#description').addClass('hide_description');

        return false;
    });

});

