// JavaScript Document
// On document load
$(function(){
  $('a:not(ul#nav a), img. div, span:not(ul#nav a)').pngFix(); 
	// footer logos
	$('#footer ul img').css('opacity', 0.5);
	$('#footer ul img').hover(function(){
		var li = $(this).parent();
		$('img', li).animate({opacity: 1},500);		
	}, function(){
		var li = $(this).parent();
		$('img', li).animate({opacity: 0.5},300);	
	});
	
	// Gallery
	
	$("#image_slider").jCarouselLite({
			btnNext: "#next",
			btnPrev: "#previous",
			visible: 1,
			speed: 500,
			easing: "easeInBack"
	});

	//Biography
	
	if($('#firstPage').length > 0){
		$('.next').click(function(){ 
			$(this).parent().fadeOut(); 
			$(this).parent().next().fadeIn();
		});
		$('.back').click(function(){ 
			$(this).parent().fadeOut(); 
			$(this).parent().prev().fadeIn();
		});
	}
	
	if($('.body_band').length > 0){
		$('a.member').hover(function(){
			$(this).css('backgroundPosition', '0px -429px');
		}, function(){
			$(this).css('backgroundPosition', '0px 0px');
		});
	}
	
	// Videos 
	if($('.body_vids').length > 0){
		$('#next').click(function(){ 
			switch($('#videos li:visible').attr('id')){
				case 'first':
					$('#videos li#first').fadeOut(); 
					$('#videos li#third').fadeIn();
				break;
				case 'third':
					$('#videos li#third').fadeOut(); 
					$('#videos li#forth').fadeIn();				
				break;
				case 'forth':
					$('#videos li#forth').fadeOut(); 
					$('#videos li#fifth').fadeIn();				
				break;
				case 'fifth':
					$('#videos li#fifth').fadeOut(); 
					$('#videos li#sixth').fadeIn();				
				break;
				case 'sixth':
					$('#videos li#sixth').fadeOut(); 
					$('#videos li#seventh').fadeIn();				
				break;
				case 'seventh':
					$('#videos li#seventh').fadeOut(); 
					$('#videos li#eighth').fadeIn();				
				break;
				case 'eighth':
					$('#videos li#eighth').fadeOut(); 
					$('#videos li#first').fadeIn();				
				break;
			}
		});
		$('#previous').click(function(){ 
			switch($('#videos li:visible').attr('id')){
				case 'first':
					$('#videos li#first').fadeOut(); 
					$('#videos li#eighth').fadeIn();
				break;
				case 'third':
					$('#videos li#third').fadeOut(); 
					$('#videos li#first').fadeIn();				
				break;
				case 'forth':
					$('#videos li#forth').fadeOut(); 
					$('#videos li#third').fadeIn();				
				break;
				case 'fifth':
					$('#videos li#fifth').fadeOut(); 
					$('#videos li#forth').fadeIn();				
				break;
				case 'sixth':
					$('#videos li#sixth').fadeOut(); 
					$('#videos li#fifth').fadeIn();				
				break;
				case 'seventh':
					$('#videos li#seventh').fadeOut(); 
					$('#videos li#sixth').fadeIn();				
				break;
				case 'eighth':
					$('#videos li#eighth').fadeOut(); 
					$('#videos li#seventh').fadeIn();				
				break;
			}
		});
	}
});