$(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(function toggleCentres() {
    $(this).blur();
    $('#otherCentresPopUp').slideToggle("slow");
    return false;
  });

  $('.popUpClose a').click(function () {
    $('#otherCentresPopUp').hide();
    return false;
  });

  $('a.map-region').mouseenter(function () {
    var popupId = $(this).attr('rel');
    $('div.map-popup').hide();
    $('#' + popupId).show();
    return false;
  });

  $('div.map-popup').mouseleave(function () {
    $('div.map-popup').hide();
  });
}
