$(document).ready(function() { 
	
/*	//Fix voor png in IE6
	$.ifixpng('/gfx/pixel.gif');
	$('img[@src$=.png]').ifixpng();
*/
	
	$("a[rel=productfotos]").fancybox({});
	
	//Geen achtergrond op laatste link in topmenu
	$('#topmenu li:last-child a').css("background","none");
	
	
	$('input.filled').each(function(){
		if($(this).val() == '') {
			$(this).val($('label[for="'+$(this).attr('id')+'"]').text());
		}
	}).focus(function(){
		if($(this).val() == $('label[for="'+$(this).attr('id')+'"]').text()) {
			$(this).val('');
		}
	}).blur(function(){
		if($(this).val() == '') {
			$(this).val($('label[for="'+$(this).attr('id')+'"]').text());
		}
	});
});