$(document).ready(function() {

	/*$.fn.fadeToggle = function(speed){
	   return this.animate({opacity: 'toggle'}, speed);
	};

	$.fn.fadeClose = function(speed){
	   return this.animate({opacity: 'hide'}, speed);
	};

	$.fn.fadeShow = function(speed){
	   return this.animate({opacity: 'show'}, speed);
	};

	$('.ssh').click(function(){
		$('.c2').fadeToggle(300);
		$('.openDiv').fadeToggle(300);
   });

	$('.close').click(function(){
		$('.openDiv').fadeClose(300);
		$('.c2').fadeShow(300);
		return false;
	});*/
	
	$('.ssh').click(function(){
		$('.c2').fadeToggle("normal", "linear");
		$('.openDiv').fadeToggle("normal", "linear");
	});
	
	$('.close').click(function(){
		$('.openDiv').fadeOut("normal", "linear");
		$('.c2').fadeIn("normal", "linear");
		return false;
	});
	
	$('.contentShowss').click(function(){
		$('.mssg').fadeToggle("normal", "linear");
	});
	
 });
