 $(function(){
     $('#imagefiled>a').addClass('thickbox');
     $('#altimages a').attr('rel', "gallerytc");
     $('#altimages a').hover(function(){
         $('#imagefiled>a').attr('href', $(this).attr('href'));
         $('#imagefiled>a>.themesmall').css('backgroundImage', 'url('+$(this).find('.themesmallimg img').attr('src')+')');
     });
     $('#altimages a').click(function(){
         return false;
     });
     
     //price charger
     $('.catalogpriceblock span[class$=USD]').fadeOut();
     $('.catalogpriceblock span[class$=EUR]').fadeOut();
     $('#catalogpricechanger a:eq(0)').addClass('linkover');
     $('#catalogpricechanger a').click(function(){
        
        var curv = $(this).attr('id');
        
        $('.catalogpriceblock .catalogprice').fadeOut();
        $('.catalogpriceblock .catalogprice'+curv).fadeIn();
        $('#catalogpricechanger a').removeClass('linkover');
        $(this).addClass('linkover');
        return false;
     });
 });
