// Total Care ID - Toggle Div Function
$(document).ready(function() {
						   
  $('#slickbox').hide();
  $('#wrapper2').hide();
  $('#lartistinfo').hide();
  $('#artistinfo').hide();
  
  // Fade in for Main Page
  $('a#slick-toggle').click(function() 
	{
		$('#front').hide();
		$('#bound').fadeIn(1000);
		
		return false;
  });
  
  //Toggle for Introduction and the More... link
  $('a#intromore').click(function() 
	{
		$('#lartistinfo').fadeIn(700);
		$('#artistinfo').fadeIn(700);
		$('#lartistinfo_hid').hide();
		$('#artistinfo_hid').hide();
		$('#intromore').hide();
		$('#intromore_back').fadeIn(700);
		return false;
  });
  $('a#intromore_back').click(function() 
	{
		$('#lartistinfo_hid').fadeIn(700);
		$('#artistinfo_hid').fadeIn(700);
		$('#lartistinfo').hide();
		$('#artistinfo').hide();
		$('#intromore_back').hide();
		$('#intromore').fadeIn(700);
		return false;
  });
  
  //Toggle for Index and the More... link
  $('a#intromore_i').click(function() 
	{
		$('#wrapper2').fadeIn(700);
		$('#wrapper').hide();
		$('#intromore_i').hide();
		$('#intromore_back_i').fadeIn(700);
		return false;
  });
  $('a#intromore_back_i').click(function() 
	{
		$('#wrapper').fadeIn(700);
		$('#wrapper2').hide();
		$('#intromore_back_i').hide();
		$('#intromore_i').fadeIn(700);
		return false;
  });
  
  //Involved
  $('a#invmore').click(function() 
	{
		$('#inv2').fadeIn(700);
		$('#inv1').hide();
		$('#invmore').hide();
		$('#invmore_back').fadeIn(700);
		return false;
  });
  $('a#invmore_back').click(function() 
	{
		$('#inv1').fadeIn(700);
		$('#inv2').hide();
		$('#invmore_back').hide();
		$('#invmore').fadeIn(700);
		return false;
  });
  
});
