// JavaScript Document
Date.format = 'mm/dd/yyyy';

  $(document).ready(function(){
    $("#m3field_startDate").datePicker({showYearNavigation:false});
  });
  $(document).ready(function(){
    $("#m3field_endDate").datePicker({showYearNavigation:false});
  });
   $(document).ready(function(){
    $("#m3fbrp__40").datePicker({showYearNavigation:false});
  });
   $(document).ready(function(){
    $("#m3fbrp__41").datePicker({showYearNavigation:false});
	
	// handle drop down search box

  $("#searchBox").hide();
  //toggle the componenet with class msg_body
  $("#searchControl").click(function(evt)
  {
     	evt.preventDefault();
    $(this).next("#searchBox").slideToggle(600);
  })


  });
