$(function(){
	$("#printme").click(function(){
		$(this).hide();
		window.print();
		$(this).show();
		return false;
	});
});
