var wikiIntegration = {
	initLoad: function() {
		jQuery("#bpContainer").load("http://techtips.org.uk/bpnavslug/",'',function() {

			// Look for the login button, replace the redirect to
			el = jQuery('#wp-admin-bar li.bp-login a');
			if(el.length) {
				href = el.attr('href');
				newHref = href.replace(/\?redirect_to=.*$/,'?redirect_to='+escape(window.location.href));
				el.attr('href',newHref);
			} else {
				// The login button wasn't found, look for the logout button, replace the redirect to
				el = jQuery('#wp-admin-bar a#bp-admin-logout');
				if(el.length) {
					href = el.attr('href');
					newHref = href.replace(/\&redirect_to=[^&]+/,'&redirect_to='+escape(window.location.href));
					el.attr('href',newHref);
				}
			}
		});
	}
}

jQuery(document).ready(function(){	
	wikiIntegration.initLoad();
});

