jQuery(document).ready(function(){
	/* replace whitespaces for flyouts */
	jQuery.fn.replaceWhitespace = function()
    {
		this.each(function(){
			var text = jQuery(this).html();
			text = text.replace(/\s+/g, '&nbsp;');
			jQuery(this).html(text);
		});
    }
	jQuery('.toplevel>ul>li>a').replaceWhitespace();
	
});


