//This is a comment
$(document).ready(function() {
  var images = [];
  
  $('.topic_thumb a').live('click', function(){
    var link = jQuery(this);
    clicked_thumb = link.attr("id");
    clicked_thumb_id = clicked_thumb.substr(clicked_thumb.length - 1, clicked_thumb.length)
    //alert(clicked_thumb_id);
    $('.banner_pic').fadeOut("slow");
    $('#banner_pic_' + clicked_thumb_id).fadeIn("slow");
    
    $('.topic').fadeOut("slow");
    $('#topic_' + clicked_thumb_id).fadeIn("slow");
    
    $('.topic_thumb').removeClass("selected");
    $('#thumb_picture_' + clicked_thumb_id).addClass("selected");
    return false;
  })
  

  //$('#header').css("background", "transparent url(/system/backgrounds/1/original/9_cherries.jpg?1264167068) no-repeat scroll top left");
  //$('#picture_1').addClass('selected');
})
