$(function() {
	
	$('#PAGE_ticoma_cms_hand_handleiding_cat ul li:has(ul)').each(function(){
		var newdiv = document.createElement("div");
		$('#PAGE_ticoma_cms_hand_handleiding_cat').append(newdiv);
		$(newdiv).addClass('handleidingitem').css('width','150px').css('height','150px').css('float','left');
		$(newdiv).append($(this).children());
		$(this).remove();
	});
	
	$('.handleidingitem').each(function(){
		$('a:first',this).each(function(){
			$(this).attr('href','#').css('font-size','16px').css('padding-bottom','20px');
		})
	})
	
});
