$(function()
{
	$('a.print').click(function(e)
	{
		e.preventDefault();
		
		window.print();
	});
});
