// JavaScript Document

$(document).ready(function() {		
	$(".plasticitem").click(function(){
		if (($(this).attr("id"))=="bio") {
		//opening = true;
		$(".bio").show (2000);
		$(".music").hide(2000);
		$(".photos").hide(2000);
		$(".press").hide(2000);
		$(".booking").hide(2000);
		}
		else if (($(this).attr("id"))=="music") {
		//opening = true;
		$(".music").show (2000);
		$(".bio").hide(2000);
		$(".photos").hide(2000);
		$(".press").hide(2000);
		$(".booking").hide(2000);
		}
		else if (($(this).attr("id"))=="press") {
		//opening = true;
		$(".press").show (2000);
		$(".bio").hide(2000);
		$(".photos").hide(2000);
		$(".music").hide(2000);
		$(".booking").hide(2000);

		}
		else if (($(this).attr("id"))=="photos") {
		//opening = true;
		$(".photos").show (2000);
		$(".bio").hide(2000);
		$(".music").hide(2000);
		$(".press").hide(2000);
		$(".booking").hide(2000);
		}
		else if (($(this).attr("id"))=="booking") {
		//opening = true;
		$(".booking").show (2000);
		$(".bio").hide(2000);
		$(".photos").hide(2000);
		$(".press").hide(2000);
		$(".music").hide(2000);
		}
	});	
});		

