
$(document).ready(function() {
       // hides the enquirybox as soon as the DOM is ready
        $('#enquirybox').hide();

       // toggles the enquirybox on clicking the Enquire button
        $('a#form-toggle').click(function() {

		  if(document.getElementById('enquirybox').style.display=='none') {
			  changeCaptch('captchIMG');
		  }else{
			  document.getElementById('captchIMG').src='loding_captch.gif';
		  } 

          $('#enquirybox').toggle(400);		  
          return false;
        });


      // hides the enquirybox on clicking the noted link
        $('a#form-close').click(function() {
          $('#enquirybox').hide(400);
          return false;
        });

});


function changeCaptch(captchIMG) {
	var randomnumber = Math.floor(Math.random()*11);
	document.getElementById(captchIMG).src='securimage_show_custom.php?sid='+randomnumber;
}//function changeCaptch() 
