// JavaScript Document
$(document).ready(function () {
		 
	//Hide Content
	$("#hideB").hide();
	$(".rightMain1").hide();
	$(".leftMain:eq(1)").hide();
	$(".leftMain:eq(2)").hide();

	
	//Click read more button
	$(".viewA").click(function () {
		$("#hideA").fadeIn(900);
		$("#hideA").show();
		$("#hideB").hide();
		$(".rightMain1").hide();
		$(".rightMain").show()
	
	 });
	
	$(".viewB").click(function () {
		$("#hideB").fadeIn(900);
		$("#hideB").show();
		$("#hideA").hide();
		$(".rightMain").hide();
		$(".rightMain1").show();
	
	 });
	
	$(".subPage1").click(function () {
		$(".leftMain:eq(0)").fadeIn(900);
		$(".leftMain:eq(1)").hide();
		$(".leftMain:eq(2)").hide();
	
	 });
	
	
	
	$(".subPage2").click(function () {
		$(".leftMain:eq(1)").fadeIn(900);
		$(".leftMain:eq(0)").hide();
		$(".leftMain:eq(2)").hide();
	
	 });
	
	$(".subPage3").click(function () {
		$(".leftMain:eq(2)").fadeIn(900);
		$(".leftMain:eq(1)").hide();
		$(".leftMain:eq(0)").hide();
	
	 });
	
	
	
	 $("ul.sideContent:eq(1)").css({height:"135px"});
	 $(".middleContent p").css({paddingTop:"10px"});
	  $(".leftMain p").css({marginTop:"-10px"});
    


	
	
	//Hide Containers
	
	
	// End Hide Container
	
	

   
 


	




	



	
	
});