/**
* general sitewide js functions
* should be included at the top of every page
*/

// meek namespace
var meek = meek? meek: new Object();

meek.pr = function(s) {
	if (window.console) {
		window.console.log(s);
	} else {
		//alert(s);
	}
};
