/* --------------------------------------------------------------------
	Print
-------------------------------------------------------------------- */

$(document).ready(function() {
	
	// get print label (has tooltip text)
	var printLabel = $("p.toolbar span.printLabel");
	
	$('#content p.toolbar').each(function() {
		
		var href = 
			$('<a />', {
				'class': 'print',
				text: 'Print deze pagina',
				title: printLabel.html(),
				click: function() {
					window.print();
					return false;
				} 
			});
			
		printLabel.replaceWith(href);
	});
	
});
