$(document).ready(function(){	
		$("#slider").easySlider({
			auto: true,
			continuous: true 
		});
	});	
$(document).ready(function(){	
		$(".slider").easySlider({
			auto: true,
			continuous: true 
		});
	});	
$(document).ready(function(){	
		$(".footerslider").easySlider({
			auto: true,
			continuous: true,
			pause: 0,
 speed: 15000
		});
	});	
$(document).ready(function()
	{
	  //hide the all of the element with class msg_body
	  $(".msg_body").hide();
	  //toggle the componenet with class msg_body
	  $(".click").click(function()
	  {
		$(this).next(".msg_body").slideToggle(600);
	  });
	  $(".msg_body img").click(function()
	  {
		$(this).parent(".msg_body").slideToggle(600);
	
	  });
	});	
