$(document).ready(function(){
  $( '#Informations p:not(:first)' ).hide();
  
  $('#InfoNavigation li').click(function(e) {
    $('#Informations div').hide();
    $('#InfoNavigation .selected').removeClass("selected");
    $(this).addClass('selected');
    
    var clicked = $(this).find('a:first').attr('href');
    $('#Informations ' + clicked).fadeIn('fast');
    e.preventDefault();
  }).eq(0).addClass('selected');
  
    $('#RightColumnContainer .Item2 div.Text ul li:odd').addClass('alternatingRow');
    //RightColumnContainer adding class to li
    
/*$(window).scroll(function () { 
    $('#google_ads_div_Skyscraper').css('top', $(document).scrollTop()); 
  });
  
  
$(window).scroll(function() {
  $('#google_ads_div_Skyscraper')
      .stop()
      .animate({top: $(document).scrollTop()},'slow','easeOutBack');
  }); */

$("div#SkyscraperScroller").css("position", "absolute");


$(window).scroll(function() {
  $("div#SkyscraperScroller").css("top", $(window).scrollTop() + "px");
});

});
