// lijsten
$(function()	
{
	// list items onclick maken
	$('#producten li').each(function() {
			$(this).css("cursor", "pointer");
			$(this).click(function() { window.location = $("a.leesmeer", this).attr("href"); });
		}
	);

	// hover bij parels en uitgelicht
	$('#producten li').hover(
		function() { $(this).addClass('hover'); 	},
		function() { $(this).removeClass('hover'); 	}
	);
	
	// filter selectbox
	$('#filter_vestiging').change(function()
	{
		window.location = submap + '/index.php/producten/categorie/id_categorie/' + huidige_categorie + '/vestiging/' + $(this).val();
	});
});
