// stop BackgroundImageCache voor IE				
try	{ document.execCommand("BackgroundImageCache", false, true); } catch(e) { }

/**
 * variabelen met jQuery met een $ beginnen!!!
 */
$(function()
{
	$("#categorieoverzicht li").hoverClick();
	$("#producten #overzicht li").hoverClick();
	
	// Formulier focus op velden
	$(":input").not("input[type=button], input[type=submit], input[type=radio], input[type=checkbox]")
		.focus(function() 	{ $(this).addClass("veldfocus"); })
		.blur(function() 	{ $(this).removeClass("veldfocus"); });
		
	// default value bij formulieren
	$("input:text[title], input:password[title], textarea[title]").each(function() { 
		$(this).defaultvalue( $(this).attr("title") );
	});
	
	$("#inloggen label:not(.onthouden)").hide();

});

Cufon.replace('#sportheader h1', { 
	fontFamily: 'Helvetica Neue Condensed',
	textShadow: '1px 1px rgba(0, 0, 0, 0.5)'
});
Cufon.replace('#categorieoverzicht h2', { fontFamily: 'Helvetica Neue Light' });
Cufon.replace('#sportheader .usps li', { 
	fontFamily: 'Helvetica Neue Condensed'
});
