// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

$(document).ready( function() {
  $('.thumbs > a').click(function() {
    $('.current').removeClass("current");
    $(this).children('img').addClass("current");
    var thumb = $(this).children('img').attr("src");
    var src = thumb.replace("thumb", "medium");
    $('.medium').attr('src', src);
    return false;
    // alert($('.medium').attr('src'));
  });
});
