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