try {
	$(document).ready(
		function ()
		{
			$('ul.products-list li').hover(
				function(){
					$(this).addClass('active');
				},
				function(){
					$(this).removeClass('active');
				}
			);
			$('.image-prev li a').click(
				function () {
					var $rel = this.rel;
					var $rel2 = $('.image-flash').attr('rel');
					$('.image-prev li:last').after($(this).parent().clone(true));
					$(this).parent().remove();
					$('.image-prev li:last a').attr('rel', $rel2);
					
					$rel2 = $rel2.replace('/files/animation/bilde', '/images/animation/prev/a_ready.0').replace('.swf', '.jpg');
					$('.image-prev li:last a img').attr('src', $rel2);
					
					$('.image-flash').empty().flash(
						{
							src: $rel,
          					width: 690,
          					height: 530
						},
        				{
        					version: 8
        				}
					).attr('rel', $rel);
					
					
					return false;
				}
			);
			$('a[@rel=external]').attr('target', '_blank');
		}
	);
} catch(e){}
	
	
function changePic(el, pic1) {
var pic=document.getElementById(el);
pic.src = pic1;
}