// JavaScript Document
var win=null;
function printIt(printThis){
	win = window.open();
	self.focus();
	win.document.open();
	win.document.write('<'+'html'+'><'+'head'+'><'+'link href'+'="/_Styles/css/printsection.css" rel="stylesheet" type="text/css"  />');
	win.document.write('<'+'/'+'head'+'><'+'body'+'>');
	win.document.write(printThis);
	win.document.write('<'+'/'+'body'+'><'+'/'+'html'+'>');
	win.document.close();
	win.print();
	win.close();
}
$(function(){
	if($('a.nutinfo').length){
		 $('a.nutinfo').overlay({effect:'apple', onClose: function(){$('body').children('img').hide();}});
	}
	if($('.printbtn').length){
		$('.printbtn').click(function(e){
			e.preventDefault();
			printIt($('.nutpaperbtm').html());
		});
	}		   
});
