// JavaScript Document

$(function(){
       $('ul.colors li').click(function(){
               var color = $(this).attr('class');
               var img = $(this).parent().prev().prev().find('img');
               img.attr('src', 'catalog/' + img.attr('alt') + color + '.jpg');
               return false;
       });
});
