// JavaScript Document

$(document).ready(function(){
	$("li.tab1").click(function () {
	  $("#one").fadeTo("fast", 1);
	  $("#two").fadeTo("fast", 0);
	  $("#three").fadeTo("fast", 0);
	  $("#four").fadeTo("fast", 0);
	  $("#five").fadeTo("fast", 0);
	  $("#six").fadeTo("fast", 0);
	  
	});
	
	$("li.tab2").click(function () {
	  $("#one").fadeTo("fast", 0);
	  $("#two").fadeTo("fast", 1);
	  $("#three").fadeTo("fast", 0);
	  $("#four").fadeTo("fast", 0);
	  $("#five").fadeTo("fast", 0);
	  $("#six").fadeTo("fast", 0);
	});
	
	$("li.tab3").click(function () {
	  $("#one").fadeTo("fast", 0);
	  $("#two").fadeTo("fast", 0);
	  $("#three").fadeTo("fast", 1);
	  $("#four").fadeTo("fast", 0);
	  $("#five").fadeTo("fast", 0);
	  $("#six").fadeTo("fast", 0);
	});
	
	$("li.tab4").click(function () {
	  $("#one").fadeTo("fast", 0);
	  $("#two").fadeTo("fast", 0);
	  $("#three").fadeTo("fast", 0);
	  $("#four").fadeTo("fast", 1);
	  $("#five").fadeTo("fast", 0);
	  $("#six").fadeTo("fast", 0);
	});
	$("li.tab5").click(function () {
	  $("#one").fadeTo("fast", 0);
	  $("#two").fadeTo("fast", 0);
	  $("#three").fadeTo("fast", 0);
	  $("#four").fadeTo("fast", 0);
	  $("#five").fadeTo("fast", 1);
	  $("#six").fadeTo("fast", 0);
	});
	$("li.tab6").click(function () {
	  $("#one").fadeTo("fast", 0);
	  $("#two").fadeTo("fast", 0);
	  $("#three").fadeTo("fast", 0);
	  $("#four").fadeTo("fast", 0);
	  $("#five").fadeTo("fast", 0);
	  $("#six").fadeTo("fast", 1);
	});
	
});
