$(document).ready(function()
{
  //hide the all of the element with class msg_body
  $(".msg_body").hide();
  $(".msg_head").css('backgroundImage','url("images/arrowDown.gif")');
  //toggle the componenet with class msg_body
  $(".msg_head").click(function()
  {
	//Speed of drop down boxes
    $(this).next(".msg_body").slideToggle(600);
	//toggle between arrows
	if($(this).css('backgroundImage') == 'url(images/arrowUp.gif)')
		$(this).css('backgroundImage','url("images/arrowDown.gif")');
	else
		$(this).css('backgroundImage','url("images/arrowUp.gif")'); 

  });

});

////////////////////////

$().ready(function() {
    $("#userInfoForm").validate({
	messages: {
		userName: "Name is required",
		companyName: "Company name is required",
		emailAddress: "Email address is required",
		phoneNumber: "Phone number is required",
	}

	

	});
	
  });