$(document).ready(function() {
	$('a.print').click(function() {
		window.print();
		return false;
	});
});

