jQuery(document).ready(function(){
	$(".mainimage > .vergroot").click(function() {
		$(".mainimage img:first").parent().click();	
	});	
	
	$(".itemshow-image > img").click(function()
	{
		$(".mainimage img").each(function()
		{
			$(this).addClass("hide");
		});
		var alt = $(this).attr('alt');
		$(".mainimage img[alt="+alt+"]").removeClass("hide");
		
	});
	$(".itemshow-image > img").mouseover(function()
	{
		$(this).css('cursor','pointer');
	});
	$(".filter-image").click(function()
	{
		//alert($(this).parent().attr("href"));
		$(".filter-image").attr("disabled", true);
		window.location = $(this).parent().attr("href");
		
	});	
		
});


