$(document).ready(function(){
	$(function(){ 
        	$("#NotComeAgain").click(function(event){
        		event.preventDefault();        		
        		$('#fullscreenFooter').find("span:last").remove();
        		showLoaderGif();
        		hidePlayer();
        		NotComeAgain();
        		hideGif();				
			});			
	});	
	$(function(){ 
        	$("#MadameButterfly").click(function(event){
				event.preventDefault();
				$('#fullscreenFooter').find("span:last").remove();
				showLoaderGif();
				hidePlayer();
				MadameButterfly();
				hideGif();				
			});
	});	
	$(function(){ 
        	$("#PapaGeno").click(function(event){
        		event.preventDefault();
        		$('#fullscreenFooter').find("span:last").remove();
				showLoaderGif();
				hidePlayer();
				PapaGeno();
				hideGif();				
			});
	});

	

function NotComeAgain(){
				
		$('#fullscreenFooter').append('<span><object height="81" width="100%"> <param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fhawken1%2Fkin-not-come-again&amp;show_comments=true&amp;auto_play=false&amp;color=ff0919"></param> <param name="allowscriptaccess" value="always"></param> <embed allowscriptaccess="always" height="81" width="800px" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fhawken1%2Fkin-not-come-again&amp;show_comments=true&amp;auto_play=true&amp;color=ff0919" type="application/x-shockwave-flash" width="100%"></embed> </object></span>');
		
		
		
	}

function MadameButterfly(){
		$('#fullscreenFooter').append('<span><object height="81" width="100%"> <param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fhawken1%2Fmadame-butterfly&amp;show_comments=true&amp;auto_play=true&amp;color=ff0919"></param> <param name="allowscriptaccess" value="always"></param> <embed allowscriptaccess="always" height="81" width="800px" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fhawken1%2Fmadame-butterfly&amp;show_comments=true&amp;auto_play=true&amp;color=ff0919" type="application/x-shockwave-flash" width="100%"></embed> </object></span>');
		
		
	}
	
function PapaGeno(){
		$('#fullscreenFooter').append('<span><object height="81" width="100%"> <param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fhawken1%2Fpapageno-1&amp;show_comments=true&amp;auto_play=true&amp;color=ff0919"></param> <param name="allowscriptaccess" value="always"></param> <embed allowscriptaccess="always" height="81" width="800px" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fhawken1%2Fpapageno-1&amp;show_comments=true&amp;auto_play=true&amp;color=ff0919" type="application/x-shockwave-flash" width="100%"></embed> </object></span>');
	}
function showLoaderGif() {
		$('#centerBox').append('<div id="loaderGif"></div>');  
		$('#loaderGif').fadeIn('normal');
	}
function hideGif(){
   		$('#loaderGif').fadeOut('slow',showPlayer);
 	}

function showPlayer(){
		$('#fullscreenFooter').slideDown(3000);
	}
function hidePlayer(){
		$('#fullscreenFooter').hide();
	}

	$(function(){ 
		$("#musicLink").click(function(event){
			event.preventDefault();
			$('#musicBox').toggle('slow');		
		});
	});
	$(function(){ 
		$("#videoLink").click(function(event){
			event.preventDefault();
			$('#videoBox').toggle('slow');		
		});
	});
	
	$(function(){
		$('#photoLink').click(function(event){
			event.preventDefault();
			showLoaderGif();
			$('#photoBox').toggle();
			$('#photoBox').ajaxStop(hideGif());
				
		});
	});
});	
	

