$(document).ready(function(){
  $(function() {	    		
	    		$('pre code').each(function() {
	        		eval($(this).text());
	    		});
			}); 

	$("#printPage").click(function(e){
		e.preventDefault;
		window.print();
	});
}); 
