// define console for IE, to eliminate Javascript errors on calls to console.log.
if (console === undefined) {
	console = { 
		log   : function(){}, 
		debug : function(){},
		info  : function(){},
		warn  : function(){},
		error : function(){}
	};
}
