$(document).ready(setupFlashPopup);

function setupFlashPopup() {
   $('#homebanner_belance').click(function () {
      //open bookings popup from link's href attribute
      window.open(this.href, 'flashbrowser', 'width=1000,height=620,scrollbars=yes');
      return false;
   });
}

$(document).ready(setupSubscribeClear)

function setupSubscribeClear() {
   $('#subscribe_email').focus(function () {
      if (this.value == this.getAttribute('altvalue')) {
         this.value = '';
      }
   })
   .blur(function () {
      if (this.value == '') {
         this.value = this.getAttribute('altvalue');
      }
   });
}

