
$(document).ready(function()
{
  //hide the all of the element with class msg_body
  $(".qs_body").hide();
  //toggle the componenet with class msg_body
  $(".qs_link").click(function()
  {
    $(this).next(".qs_body").slideToggle(600);
  });
  
	if ($('#form-sale').length > 0){
		$('#Con').val('S');
	}
	
	if ($('#form-rent').length > 0){
		$('#Con').val('L');
	}
});
