$(document).ready( function() {
	$(".print").click(function(){
		if(document.getElementById || document.layers){
			window.print();
		}
   });
	$(".print").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
	});
});

