$(function() {
	// Use this example, or...
	//$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
	// This, or...
	$('#content a img').parent().lightBox(); // Select all links in object with gallery ID
	// This, or...
	//$('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()
{ 


/*	
	$('#leftbutton ul ul').each(function(index){
		$(this).parent().hover(function () {
			$('.leftbutton').animate({height: "300px"},300);
			$(this).children().next().fadeIn(500);
		},
		function () {
			$('.leftbutton').height(225);
			$(this).children().next().hide();
		})
	});
*/
 /* $('#leftbutton ul ul').each(function(index){
    $(this).prev().before('<span class="mm"></span>');
  });
	
  $('#leftbutton ul ul').each(function(index){  
    $('.mm').click(function() {
    	$(this).next().next().slideToggle("slow");
      $(this).toggleClass("active");
      return false;
    });
    return false;
  });*/
  
  //$('.bt1 ul:first').each(function(index){
 //   $('.bt1').removeClass('bt1');
   // $('.bt1').addClass('used1');
   
    
/*    return false;
  });*/
/*  $('.bt2 ul').each(function(index){
    $(this).parent().removeClass('bt2');
    $(this).parent().addClass('used2');
  });
  $('.bt3 ul').each(function(index){
    $(this).parent().removeClass('bt3');
    $(this).parent().addClass('used3');
  });  */
}); 