$(function() {
  // Use this example, or...
  //$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
  // This, or...
  //$('#gallery a').lightBox(); // Select all links in object with gallery ID
  // This, or...
  $('.csc-frame .csc-textpic a').lightBox(); // Select all links with lightbox class
  $('.csc-textpic a.lightbox').lightBox(); // Select all links with lightbox class
  // This, or...
  //$('a').lightBox(); // Select all links in the page
  // ... The possibility are many. Use your creative or choose one in the examples above
});


  $(document).ready(function() {
      $('#container').fadeIn('slow', function() {
        // Animation complete
      });
  });

  $(document).ready(function() {
    $("#menu a").mouseout(function() {
          $(this).fadeTo(30, 0.11, function(){
            $(this).fadeTo("fast", 1.0)
          });



    });
  });
