/************************************************************
	Debug 1.0 - Debug jQuery Plug-in
	
	Sends specified message to Console window (to avoid using the alert() function)
	Make sure you have Firebug install in Firefox to use this plugin
	
	Copyright (c) 2007 Simon Coulton
*************************************************************/

(function($) {
	$.fn.debug = function(message) {
		if (window.console) {
			console.debug(message);
		}
	}
})(jQuery);