today=new Date();
		y0=today.getFullYear();
		
		function clearText(thefield){
		if (thefield.defaultValue==thefield.value)
		thefield.value = ""
		} 
		


jQuery(document).ready(function() {
  jQuery(".numbers").hide();
  //toggle the componenet with class msg_body
  jQuery(".callusback").click(function()
  {
    jQuery(this).next(".numbers").slideToggle(500);
  });
});



$(function() {
    // run the code in the markup!
    $('pre code').each(function() {
        eval($(this).text());
    });
});


