
$(function(){

	//Print
	//-----------------------------------------------
	$(".print").each(function(){
		$(this).click(function(){
			$("body").printElement({
				leaveOpen:true,
				printMode:'popup',		
				overrideElementCSS:['/sites/system/modules/com.multiburo.opencms.commons/resources/css/default/print.css',
					'/sites/system/modules/com.multiburo.opencms.website/resources/css/default/print.css']
			});
		});
	});
	
	
});
