$(document).ready(function(){

	//<br />
	//MIKO - Product Categorie Mouse Over
	//--------------------------------------------------------------------------------------------	
	//Set the needed class on the "a"
	$('#producten-overzicht-left td a').each(function(index) {
		// Add the right index number to each class
		$(this).addClass('cat-' + (index + 1));
	});
	
	//--------------------------------------------------------------------------------------------	
	//Set the needed class on the "img"
	$('#producten-overzicht-right td div').each(function(index) {
		// Add the right index number to each class
		$(this).addClass('cat-' + (index + 1));
		
	});
	
	//--------------------------------------------------------------------------------------------	
	//MouseOver
	$('#producten-overzicht-left td a').mouseenter(function(e){
			var toonKlik = e.target;
			//alert(toonKlik.className); 
			$("div.basic-img").css({opacity: 0, display:"none"});
			
			$("div."+toonKlik.className).stop()
				.css({opacity: 0, display:"block"})
				.fadeTo(500, 1);
	});
	
	//--------------------------------------------------------------------------------------------	
	//MouseOut
	$('#producten-overzicht-left td a').mouseleave(function(e){
			var toonKlik = e.target;
			//alert(toonKlik.className); 
			$("div."+toonKlik.className).css({opacity: 0, display:"none"});
			$("div.basic-img").stop()
			.css({opacity: 0, display:"block"})
			.fadeTo(500, 1);
	});
	
});
