$(document).ready(function(){	
	//doc ready start
	
	var height = $(window).height();
	$('#ct').css({'height': height,});
	$('#sh').css({'height': height,});
	$('#xp').css({'height': height,});
	$('#bk').css({'height': height,});
	$('#nz').css({'height': height,});
	$('#jp').css({'height': height,});
	$('#bb').css({'height': height,});
	$('#tb').css({'height': height,});

	
	//lineup menu
		$('#menu > li > ul')
		.hide()
		.click(function(e) {
		e.stopPropagation();
	});
	
	
	$('#menu > li').toggle(function() {
		$(this).find('ul').slideDown();
		}, function() {
		$(this).find('ul').slideUp();
		});
		
	$('#menu > li > ul > li').toggle(function() {
		$(this).find('ul').slideDown();
		}, function() {
		$(this).find('ul').slideUp();
		});	
		
	//pages bands
	
		//cold turkey
		$('.band1').click(function(){
			$('#ct').animate({
			'left': '0px',
			});
			$('#sh').animate({
			'left': '-355px',
			});
			$('#xp').animate({
			'left': '-355px',
			});
			$('#bk').animate({
			'left': '-355px',
			});
			$('#nz').animate({
			'left': '-355px',
			});
			$('#bb').animate({
			'left': '-355px',
			});
			$('#jp').animate({
			'left': '-355px',
			});
			$('#tb').animate({
			'left': '-355px',
			});
		});
		
		//supernatural heroes
		$('.band2').click(function(){
			$('#sh').animate({
			'left': '0px',
			});
			$('#ct').animate({
			'left': '-355px',
			});
			$('#xp').animate({
			'left': '-355px',
			});
			$('#bk').animate({
			'left': '-355px',
			});
			$('#nz').animate({
			'left': '-355px',
			});
			$('#bb').animate({
			'left': '-355px',
			});
			$('#jp').animate({
			'left': '-355px',
			});
			$('#tb').animate({
			'left': '-355px',
			});
		});
		
		//x-pression
		$('.band3').click(function(){
			$('#xp').animate({
			'left': '0px',
			});
			$('#sh').animate({
			'left': '-355px',
			});
			$('#ct').animate({
			'left': '-355px',
			});
			$('#bk').animate({
			'left': '-355px',
			});
			$('#nz').animate({
			'left': '-355px',
			});
			$('#bb').animate({
			'left': '-355px',
			});
			$('#jp').animate({
			'left': '-355px',
			});
			$('#tb').animate({
			'left': '-355px',
			});
		});
		
		//boemelkapel
		$('.band4').click(function(){
			$('#bk').animate({
			'left': '0px',
			});
			$('#sh').animate({
			'left': '-355px',
			});
			$('#xp').animate({
			'left': '-355px',
			});
			$('#ct').animate({
			'left': '-355px',
			});
			$('#nz').animate({
			'left': '-355px',
			});
			$('#bb').animate({
			'left': '-355px',
			});
			$('#jp').animate({
			'left': '-355px',
			});
			$('#tb').animate({
			'left': '-355px',
			});
		});
		
		//noizz
		$('.band5').click(function(){
			$('#nz').animate({
			'left': '0px',
			});
			$('#sh').animate({
			'left': '-355px',
			});
			$('#xp').animate({
			'left': '-355px',
			});
			$('#bk').animate({
			'left': '-355px',
			});
			$('#ct').animate({
			'left': '-355px',
			});
			$('#bb').animate({
			'left': '-355px',
			});
			$('#jp').animate({
			'left': '-355px',
			});
			$('#tb').animate({
			'left': '-355px',
			});
		});
		
		//big benny
		$('.band6').click(function(){
			$('#bb').animate({
			'left': '0px',
			});
			$('#sh').animate({
			'left': '-355px',
			});
			$('#xp').animate({
			'left': '-355px',
			});
			$('#bk').animate({
			'left': '-355px',
			});
			$('#nz').animate({
			'left': '-355px',
			});
			$('#ct').animate({
			'left': '-355px',
			});
			$('#jp').animate({
			'left': '-355px',
			});
			$('#tb').animate({
			'left': '-355px',
			});
		});
		
		//jean and the piepkes
		$('.band7').click(function(){
			$('#jp').animate({
			'left': '0px',
			});
			$('#sh').animate({
			'left': '-355px',
			});
			$('#xp').animate({
			'left': '-355px',
			});
			$('#bk').animate({
			'left': '-355px',
			});
			$('#nz').animate({
			'left': '-355px',
			});
			$('#bb').animate({
			'left': '-355px',
			});
			$('#ct').animate({
			'left': '-355px',
			});
			$('#tb').animate({
			'left': '-355px',
			});
		});
		
		//the boozers
		$('.band8').click(function(){
			$('#tb').animate({
			'left': '0px',
			});
			$('#sh').animate({
			'left': '-355px',
			});
			$('#xp').animate({
			'left': '-355px',
			});
			$('#bk').animate({
			'left': '-355px',
			});
			$('#nz').animate({
			'left': '-355px',
			});
			$('#bb').animate({
			'left': '-355px',
			});
			$('#jp').animate({
			'left': '-355px',
			});
			$('#ct').animate({
			'left': '-355px',
			});
		});
		
		//close
		$('.close').click(function(){
			$('#ct').animate({
			'left': '-355px',
			});
			$('#sh').animate({
			'left': '-355px',
			});
			$('#xp').animate({
			'left': '-355px',
			});
			$('#bk').animate({
			'left': '-355px',
			});
			$('#nz').animate({
			'left': '-355px',
			});
			$('#bb').animate({
			'left': '-355px',
			});
			$('#jp').animate({
			'left': '-355px',
			});
			$('#tb').animate({
			'left': '-355px',
			});
		});
		
		
	//doc ready end
});


