$(function() {
	$(".customertype-1 .OrdinariePrice").each(function (){if($(this).html() != ""){$(this).html(' (' +  $(this).html()+ ' inkl. moms.)'); }});
	//Fix: Toplinks (2009-08-07)
	for (i=2; i<=7; i++)
		$(".hozmenu-bottom #mh"+i+" a:first").attr("href","#");

	//Fix: png
	$(".VapenILager-tabel td").each(function() {
		var a = $(this).html().replace('.png','');
		$(this).html(a);
	});
	
	//Fix: Extra icons
	$(".VapenILager-tabel img").each(function() {
		var imgurl = $(this).attr("src"); if (imgurl.indexOf(".png") == -1) $(this).attr("src",imgurl+".png");		
    });	
	
	//Apply shadows
	//$(".newsletter-1").remove();
	//$(".box").dropShadow();
	//$(".FPL").dropShadow();
	//$(".content").dropShadow();
	//$(".breadcrum").dropShadow();
	//$("#messageboxtextBox").dropShadow();	
	
});

