(function($) {
  $(document).ready(function() {
    $('#primary-navigation ul.menu').superfish({
      speed: 500,
      autoArrows: false
    });
  
  /**
   * Remove border from the bottom of images if they are anchor links
   */
    $('a img').parent('a').css('border','0');

  /**
   * E-card show action
   **/
  $('#give-ecard-button').click(function(){
    $('.pane-hhi-cards-hhi-ecard-form').fadeIn();
    return false;
  });
  
  /**
   * Donate form show action
   */
  $('#hhi-donate-form #edit-submit').click(function(){
    $('#donate-address-container').fadeIn();
    return false;
  });
  
  
  //Show Slideshow title, bottoms when DOM is ready
  $('.views-slideshow-cycle-main-frame-row-item .views-field-title, .views-slideshow-controls-bottom').show();

  /**
   * Clears text value for email signup form when it is brought to focus.
   */
    $('input.form-text').focus((function() {    
      if (this.value == this.defaultValue){  
          this.value = '';  
      }  
      if(this.value != this.defaultValue){  
          this.select();  
      }  
   }));
  });
}(jQuery));

//Assign selectors that need cufon font replacement
//Cufon.replace('#hhi-sent-card-view .pane-node-title, #hhi-sent-card-view .pane-title, .hhi-campaigns-search th , #hhi-campaigns h2.pane-title, .hhi-store-page h2.title, #hhi-product-detail h2.pane-title, .hhi-project-detail-page .pane-node-title, .hhi-project-teasers .views-field-title, #hhi-campaign .pane-node-title, #hhi-donate-page .pane-node .pane-title, #hhi-card h2.pane-title, #hhi-card .pane-node-title, #block-menu-menu-multimedia ul li a, h1.title, .view-hhi-multimedia .view-header h2, #block-system-main-menu > .block-content > ul > li > a, .hhi-footer-promos .views-field-title, .hhi-blog-list h2, .pane-hhi-blog h2.pane-title, h3.title, #block-block-10 h2, .views-slideshow-cycle-main-frame-row-item .views-field-title .field-content');
;

