$(document).ready(function() {
    $('.cy').cycle('fade');
    
    
    $('.galth').click(function() {
      var big=$(this).find('img').attr('big');
      var cap=$(this).find('img').attr('cap');
      if ($(this).attr('type')=="vid") {
        $('#galbig').load("/wordpress/wp-content/themes/danielle/video_spot.php?q="+big);
      } else {        
        $('#galbig').fadeOut(500,function() {
          $('#galbig').html('<img src="'+big+'" /><br />'+cap).fadeIn(500);
        });
      }
    });
    
    $('.edit-link').click(function() {
      document.location=$(this).attr('href');
    });
    
    $('#logodanse').click(function() {
      document.location="/dance";
    });

    $('#logomusic').click(function() {
      document.location="/music";
    });
    
    $('#logoboutique').click(function() {
      document.location='/boutique';
    });
    
    $('.map').click(function() {
      var go = $(this).attr('big');
      $('body').append('<div id="pop"><img src="'+go+'"</div>');
      $('#pop').hide().css({"left":(($(document).width()/2)-$(this).outerWidth()),"top":100}).fadeIn();
    });
    
    $('#pop').live("click",function() {
      $(this).fadeOut(500, function() { $(this).remove();});
    });

});
