$(document).ready(function() {

	// rounded corners
	var IE = /*@cc_on!@*/false;
	if(!IE){
		// rounded corners on input fields don't work in IE
		$("#zoeken li input").corner("round 5px");
	}
	else
	{
		// specific for IE
		$("#tabs ul").corner("round 5px top");
		$("#tabs ul li").corner("round 5px top");
	}
	$("#zoeken li.vraag").corner("round 5px");
	$(".boxBorder").corner("round 10px");
	$(".box").corner("round 8px");
	$("#hoofdnav table td").corner("round 5px");
	$("#sitemap").corner("round 5px");
	
	$("#accordion").accordion();
	
	$("#tabs").tabs();
	$("#tabs").show();

});
