jQuery.jPrintArea=function(el){
	
	var iframe = $('<iframe></iframe>');
	$(iframe)
	.attr('style','position:absolute;width:0px;height:0px;left:-500px;top:-500px;')
	.appendTo('body');
	
	var doc = $(iframe)[0].contentWindow.document;
	doc.write('<div style="padding:25px 50px;">'+$(el).html()+'</div>');
	doc.close();
		
	$(iframe)[0].contentWindow.focus();
	$(iframe)[0].contentWindow.print();
	
	$('body').remove($(iframe));
}