// JavaScript Document
//for front page sliding list
$(document).ready(function(){
	$("#the_why").hide();
	$("#use_it").hide();
	$("#contact").hide();
	$("#the_how").hide();
	
	$("#what").click(function () {
	  $("#the_why").hide();
	  $("#use_it").hide();
	  $("#contact").hide();
	  $("#the_how").hide();
	  $("#the_what").fadeIn("slow");
	  return false
    });
	
	$("#why").click(function () {
	  $("#the_what").hide();
	  $("#use_it").hide();
	  $("#contact").hide();
	  $("#the_how").hide();
	  $("#the_why").fadeIn("slow");
	  return false
    });
	
	$("#use").click(function () {
	  $("#the_what").hide();
	  $("#the_why").hide();
	  $("#contact").hide();
	  $("#the_how").hide();
	  $("#use_it").fadeIn("slow");
	  return false
    });
	
	$("#touch").click(function () {
	  $("#the_what").hide();
	  $("#the_why").hide();
	  $("#use_it").hide();
	  $("#the_how").hide();
	  $("#contact").fadeIn("slow");
	  return false
    });
	
	$("#how").click(function () {
	  $("#the_what").hide();
	  $("#the_why").hide();
	  $("#use_it").hide();
	  $("#contact").hide();
	  $("#the_how").fadeIn("slow");
	  return false
    });
    
    $("#edit").hide();
	$("#delete").hide();
	$("#feature").hide();
	$("#contactus").hide();
	
	$("#adding").click(function (){
	  $("#edit").hide();
	  $("#delete").hide();
	  $("#feature").hide();
	  $("#contactus").hide();
	  $("#add").fadeIn("slow");
	})
	
	$("#editing").click(function (){
	  $("#add").hide();
	  $("#delete").hide();
	  $("#feature").hide();
	  $("#contactus").hide();
	  $("#edit").fadeIn("slow");
	})
	
	$("#deleting").click(function (){
	  $("#edit").hide();
	  $("#add").hide();
	  $("#feature").hide();
	  $("#contactus").hide();
	  $("#delete").fadeIn("slow");
	})
	
	$("#features").click(function (){
	  $("#edit").hide();
	  $("#delete").hide();
	  $("#add").hide();
	  $("#contactus").hide();
	  $("#feature").fadeIn("slow");
	})
	
	$("#more").click(function (){
	  $("#edit").hide();
	  $("#delete").hide();
	  $("#feature").hide();
	  $("#add").hide();
	  $("#contactus").fadeIn("slow");
	})

});
