// JavaScript Document
  jQuery.noConflict();

 jQuery(document).ready(function(){
  //hide the all of the element with class msg_body
 /*   jQuery(".menu").show();
  //toggle the componenet with class msg_body
    jQuery(".menu_head").mouseenter(function()
  {
	jQuery(".menu").fadeIn(200);	
   });
    jQuery(".menu_head").mouseleave(function()
  {
    jQuery("ul.menu").fadeOut(200);
  });

	
	
	
	jQuery(".menu2").hide();
  //toggle the componenet with class msg_body
   jQuery(".menu_head2").mouseenter(function()
  {
	jQuery(".menu2").fadeIn(200);	
   });
    jQuery(".menu_head2").mouseleave(function()
  {
    jQuery(".menu2").fadeOut(200);
  });
	
	
	jQuery(".menu3").hide();
  //toggle the componenet with class msg_body
   jQuery(".menu_head3").mouseenter(function()
  {
	jQuery(".menu3").fadeIn(200);	
   });
    jQuery(".menu_head3").mouseleave(function()
  {
    jQuery(".menu3").fadeOut(200);
  });
	
	
	
		jQuery(".menu4").hide();
  //toggle the componenet with class msg_body
   jQuery(".menu_head4").mouseenter(function()
  {
	jQuery(".menu4").fadeIn(200);	
   });
    jQuery(".menu_head4").mouseleave(function()
  {
    jQuery(".menu4").fadeOut(200);
  });
	*/
	
	
  
   jQuery(".msg_body").hide();
  //toggle the componenet with class msg_body
   jQuery(".msg_head").mouseenter(function()
  {
    jQuery(".msg_body").fadeIn(200);	
	jQuery(".msg_body2").fadeOut(200);	
  });
    jQuery(".msg_head").mouseleave(function()
  {
    jQuery(".msg_body").fadeOut(200);	
  });
	
	
	jQuery(".msg_body2").hide();
  //toggle the componenet with class msg_body
   jQuery(".msg_head2").mouseenter(function()
  {
    jQuery(".msg_body2").fadeIn(200);	
	jQuery(".msg_body").fadeOut(200);
  });
    jQuery(".msg_head2").mouseleave(function()
  {
    jQuery(".msg_body2").fadeOut(200);	
  });
	
	
	 //hide the all of the element with class msg_body
   jQuery(".p_second").hide();
  //toggle the componenet with class msg_body
   jQuery(".p_main").mouseenter(function()
  {
    jQuery(".p_second").fadeIn(300);	
	jQuery(".p_second2").fadeOut(200);	
  });
    jQuery(".p_main").mouseleave(function()
  {
    jQuery(".p_second").fadeOut(200);	
  });
	
	
	jQuery(".p_second2").hide();
  //toggle the componenet with class msg_body
   jQuery(".p_main2").mouseenter(function()
  {
    jQuery(".p_second2").fadeIn(300);	
	jQuery(".p_second").fadeOut(200);
  });
    jQuery(".p_main2").mouseleave(function()
  {
    jQuery(".p_second2").fadeOut(200);	
  });
	
	
   
  
});