$(document).ready(function(){
	if($(location).attr('href').indexOf('-c-') != -1){
		$('.menu_td td').each(function(){
			if($(this).html().toLowerCase().indexOf('webshop') != -1 || $(this).html().toLowerCase().indexOf('webwinkel') != -1){
				$(this).attr('id', 'over_'+$(this).attr('id'))
				color = $(this).css('color')
				$(this).css('color', color)
			}else{
				$(this).attr('id', $(this).attr('id').replace('over_', ''))
			}
		});
	}else if($(location).attr('href').substr(-1) == '/' || $(location).attr('href').indexOf('index.php') == -1){
		$('.menu_td td').each(function(){
			if(!$(this).hasClass('menu_separator')){
				value = $(this).html().replace(' ', '-').toLowerCase();
				if($(location).attr('href').indexOf(value) != -1){
					$(this).attr('id', 'over_'+$(this).attr('id'))
					color = $(this).css('color')
					$(this).css('color', color)
				}
			}
		});
	}
});
