$(function() {

  var default_text = $('#default_text').text();

  $('#content ul li').hover(
    function(){
      $('#default_text')
        .hide()
        .text($('#grid_text_' + $(this).attr('id')).text())
        .fadeIn(200);
    },
    function(){
      $('#default_text')
        .hide()
        .text(default_text)
        .fadeIn(200);  
    }
  );
  
  $('#photo_container.rotate')
    .click(function(){
      if(photo_position != photos.length - 1) {
        photo_position++;
        $(this).css({ backgroundImage : photos[photo_position] });
      }
    })
    .bind('dblclick', function(){
      if(photo_position != 0) {
        photo_position--;
        $(this).css({ backgroundImage : photos[photo_position] });
      }
    });
    

});