////////////////////////////
////////////////////////////
//		ONLOAD
////////////////////////////


$(document).ready(function(){						   
	

});




$(function() {

	
	//REMEMBER MENU//
	$("div#menu ul li a").each(function(el) {
		  var th = String($(this).attr("href"));
        var wh = String($(window).attr("location"));
        var tpage = th.substring(th.lastIndexOf("/"));
        var wpage = wh.substring(wh.lastIndexOf("/"));
		
		
        if (tpage == wpage) {
            //als je class gebruikt ipv id
			   //$(".current").removeClass("current");
            //$(this).parent().addClass("current");
				
				$("#selected").attr("id", "");
				$(this).parent().attr("id","selected");
				
				
            return false;
        }
		
	});
	
	//REMEMBER MENU//
	$("div#categorie_menu ul li a").each(function(el) {
		var th = String($(this).attr("href"));
        var wh = String($(window).attr("location"));
        var tpage = th.substring(th.lastIndexOf("/"));
        var wpage = wh.substring(wh.lastIndexOf("/"));
		
		
        if (tpage == wpage) {
            //als je class gebruikt ipv id
			   //$(".current").removeClass("current");
            //$(this).parent().addClass("current");
				
				$("#selected").attr("id", "");
				$(this).parent().attr("id","selected");
				
				
            return false;
        }
		
	});
	
	
});

