$(function(){
	
	
/*
	$('.live').mouseenter(function(){
		$(this).css('background', '#D6D6D6')
	}).mouseleave(function(){
		$(this).css('background', '#fff')
	})
	
	$('.studio').mouseenter(function(){
		$(this).css('background', '#D6D6D6')
	}).mouseleave(function(){
		$(this).css('background', '#fff')
	})*/


		// GALLERY

	    $(function() {
	        $('#gallery a').lightBox();
	    });


		// BANNERS

		$('.fadein img:gt(0)').hide();
	    setInterval(function(){
	      $('.fadein :first-child').fadeOut(1500)
	         .next('img').fadeIn(1500)
	         .end().appendTo('.fadein');}, 
	      3000);
	
	
});
