$(function(){ 
$( "a.printme" )
.attr( "href", "javascript:void( 0 )" )
.click(
function(){
	// Print the DIV.
	$( ".printable" ).jqprint();
	// cancel click event
	return( false );
	}
);
}
);