//debug assistant...
var DBG = function(x){
	var d = $('#DBG');
	if(!d.length){
		d = $("<div id='DBG'></div>").appendTo('body')
			.css({position:'absolute',top:'100px',left:'20px',color:'#ffffff',height:$(window).height()-120})
			.css({overflow:'auto',paddingRight:'20px',whiteSpace:'nowrap'});
	}
	d.prepend('<div>'+x+'</div>');
};
jQuery(document).ready(function($){
	// set a click handler on all items (children) within #menu...
	$('#menu').children().click(function(event){
			alert("You clicked '"+($(this).parent().find('img').jqDock('get').Title)+"' <"+this.tagName.toUpperCase()+">");
			this.blur();
			return false;
		});
	// just for example.php, allow expand/collapse of code samples...
	$('#description .exco').click(function(){
			$(this).parent().next('.codex').slideToggle();
			this.blur();
			return false;
		});
});

