$(document).ready(function(){
  $("ul li:first-child").addClass("firstchild");
  $("ul li:last-child").addClass("lastchild");

	Shadowbox.init({
		overlayOpacity: 0.90
	});


	  //toggle the componenet with class msg_body
	  $("h3.toggle").click(function()
	  {
		$(this).next("div.cbox").slideToggle(500);
		$(this).toggleClass('arrowDown');
	  });


});

function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
} 




