$(document).ready(function()
{
  //hide the all of the element with class msg_body
  $(".msg_body").hide();
  //toggle the componenet with class msg_body
  $(".msg_head").click(function()
  {
    $(this).next(".msg_body").slideToggle(600);
  });
});

$(document).ready(function() {

$('#BtnIndexWhatisSEO').mouseover(function() {
	$('#IndexWhatisSEO').show();
	$('#IndexWhyIkroh').hide();
	$('#IndexServices').hide();
	return false;
});
$('#BtnIndexServices').mouseover(function() {
	$('#IndexWhatisSEO').hide();
	$('#IndexWhyIkroh').hide();
	$('#IndexServices').show();
	return false;
});
$('#BtnIndexWhyIkroh').mouseover(function() {
	$('#IndexWhatisSEO').hide();
	$('#IndexWhyIkroh').show();
	$('#IndexServices').hide();
	return false;
});
});
