
//Print button
jQuery(function(){
	jQuery('.printButton').click(function(ev){
		window.open(this.href,"printWindow","location=0,status=0,scrollbars=1,width=800,height=600");
		return false;
	});
});
