// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
$(document).ready( function() {
  $('#ProductPanel div.product_image ul li a').click(function() {
    $('#ProductPanel div.product_image img.product_image').attr('src', $(this).attr('href') );
    return false;
  });
});