$(function() {
	
	/* standaard waardes zoekveld legen */
	$("#zoeken>form input:text")
		.focus(function(){	if(this.value == "search...") this.value = '';	})
		.blur(function(){	if(this.value == '') this.value = "search...";	});
	
	/* standaard waardes inlog username legen */
	$(".login>form input:text")
		.focus(function(){	if(this.value == "Username") this.value = ''; })
		.blur(function(){	if(this.value == '') this.value = "Username"; });
	
	/* standaard waardes inlog password legen */
	$(".login>form input:password")
		.focus(function(){	if(this.value == "Password") this.value = ''; })
		.blur(function(){	if(this.value == '') this.value = "Password"; });

	
	/* Producten lijst */
	$("#producten #producten_tab ul.algemeen li, #overzicht_producten ul.algemeen li, #series_overzicht li, #zoekresultaten li").hover(
		function()	{	$(this).addClass("hover");	},
		function()	{	$(this).removeClass("hover");	}
	);
	
	/* link op productenoverzicht */
	$("#overzicht_producten ul.algemeen li, #series_overzicht li, #zoekresultaten li").click(function() { 
		window.location = $("a:first", this).attr("href");
	});

});
