// Basic jQuery log function
// Used to replace alert() which is obtrusive and annoying!

jQuery.fn.log = function(message) {
	if (!$.browser.msie) {
		if(window.console) {
			console.debug(message);
		}
	}
};