$(document).ready(function() {
  InitBannerRotation();
  InitSearch('#searchText','Search this site');
  InitSearch('#storeKeyWord','Enter a keyword');
  InitOtherCentres();
  $('.photoGallery').gallery();
});

function InitBannerRotation(){
  $('div.homePage #imageCont').cycle({speed:5000});
}

function InitSearch(elem, text){
  $(elem).blur(function () {
    if($(this).val() == ''){
      $(this).val(text);
    }
  });

  $(elem).focus(function () {
    if($(this).val() == text){
      $(this).val('');
    }
  });
}

function InitOtherCentres(){
  $('#otherCentres').click(toggleCentres);
  $('#closeCentrePane').click(toggleCentres);
}

function toggleCentres(){
  $(this).blur();
  $('#otherCentresPopUp').slideToggle("slow");
  return false;
}