/* 
the smallest class ever
*/

// function is instantiated when document loads
window.onload = zanzibar;

// -- function zanzibar unobtrusively accesses the printit id -- //
function zanzibar(){

	// -- creating the variable from DOM -- //
	var prints	= document.getElementById('printit');

	// -- creating onClick behaviour when prints variable has been clicked and activates the printIt method -- //
	prints.onclick 	= printIt;
	
	// -- the prinIt method -- //
	function printIt(){
		window.print();
		return false;
	}
	// -- END of printIt method -- //
}
// -- END of zanzibar class -- //