$(function() {
	//$('#submenu').fadeIn('slow');
});

function printPage(node) {
	var content = $('#'+node).html();
	var pwin=window.open('','print_content','width=500,height=500');
	pwin.document.open();
	pwin.document.write('<html><style>body { font-family: Trebuchet, Arial, Verdana;font-size: 13px;} h1 {font-size: 14px;} </style><body onload="window.print()"><center><img src="/img/logo.gif" /></center>'+content+'</body></html>');
	pwin.document.close();
	setTimeout(function(){pwin.close();},1000);
}

function showartikel(actie) {
	if (actie == 'show')
		{
		$('#artikel').show();
		$('#leesverder').html('');
		}
	else
		{
		$('#artikel').hide();
		$('#leesverder').html('Lees verder...');
		document.getElementById('artikel').style.display = 'none';
		}
}