// BILDEKLIKK
jQuery(document).ready(function(){
    jQuery("div.produkt a").mousedown(function(){
      jQuery(this).addClass('activeImg');
    }).mouseup(function(){
      jQuery(this).removeClass('activeImg');
    });
});

// IMAGE SWAP
jQuery(document).ready(function(){
	jQuery("a.thumb").click(function(){
		var largePath = jQuery(this).attr("href");
		var largerPath = jQuery(this).attr("rel");
		var mainpic = jQuery("#stortbilde");
		mainpic.attr({ src: largePath });    
		mainpic.closest('a').attr('href', largerPath);
		return false;
	});    
});


$(document).ready(   
	function () {   
		$('#flashTest').flash( {   
				swf: 'monoslideshow.swf',   
				params: {   
					play: true,
					wmode: 'transparent'   
				},   
				flashvars: {   
					dataFile: 'berletaburetten.xml',
					showLogo: 'false',
					showVersionInfo: 'false' 
				},   
				height: 162,   
				width: 928   
		});   
});  
