
/**********************************************************************/
/*                                                                    */ 
/* This script contains functions and variables which are used for    */
/* the 145 campaign                                                   */
/*                                                                    */ 
/**********************************************************************/
$(document).ready( CampaignThisHeroInit );
function CampaignThisHeroInit() {
 CampaignThisHero.Init();
}
var CampaignThisHero = {
 Init : function() {
  // Add the scroll-function to compare-link
  $('#campaign_hero a.campaign_scrollpage').each(function(i) {
   if( this.href.indexOf('campaign_page_compare') != -1 ) {
    $(this).click(function() { CampaignHero.Scroll(3); });
    $(this).removeAttr('href');
   }
  });
 }
}