		 $(document).ready(function() {
		
		/***********************************************
		* Bookmark site script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
		* This notice MUST stay intact for legal use
		* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
		***********************************************/

		/* Modified to support Opera */
		function bookmarksite(title,url){
		if (window.sidebar) // firefox
			window.sidebar.addPanel(title, url, "");
		else if(window.opera && window.print){ // opera
			var elem = document.createElement('a');
			elem.setAttribute('href',url);
			elem.setAttribute('title',title);
			elem.setAttribute('rel','sidebar');
			elem.click();
		} 
		else if(document.all)// ie
			window.external.AddFavorite(url, title);
		}

		var wlprot = window.location.protocol;
		var wlhost = window.location.host;
		var wlpath = window.location.pathname;
		var wlpathnew = wlpath.replace( /\//g, "%2F");
		var pt = document.title;
		var pagetitle = pt.replace(/[^a-zA-Z 0-9 -]+/g,'').replace(/  /, ' ');
		var fullURL = wlprot + "//www." +  wlhost + wlpath;


		var pagetitleLI = pagetitle.replace(/ /g, "+");
		var emailBodyMessage = 'Check out this website! www.' + wlhost + wlpath;

		var fblink = "http://www.facebook.com/share.php?u=http%3A%2F%2Fwww."+wlhost+wlpathnew;
		var twlink = "http://twitter.com/share?url=http%3A%2F%2Fwww."+wlhost+wlpathnew+"&text="+pagetitle;
		var lilink = "http://www.linkedin.com/shareArticle?mini=true&url=http%3A%2F%2Fwww"+wlhost+wlpathnew+"&title="+pagetitleLI+"&ro=false&summary=&source="
		var emailLink = "mailto:?subject="+pagetitle+"&body="+emailBodyMessage;

		$('a#bmfb').attr('href',fblink);
		$('a#bmtw').attr('href',twlink);
		$('a#bmli').attr('href',lilink);
		$('a#bmel').attr('href',emailLink);

		$('a#bmbm').click(function() {
			bookmarksite(pagetitle, fullURL);
		});


		$('a#bookmarker').click(function() {
			$('#bookmarklinks').show();

		});

		$('#bookmarkwidget').hover(function() {
			clearInterval(bookHover);
		}, function() {
			bookHover = setInterval("$('#bookmarklinks').hide()", 2000);
		});
		
		var urlPath = window.location.pathname.toLowerCase();
		
		if (urlPath.indexOf("/knowledgearticle/") >= 0) {
			$("body").addClass("mover");
		}
		
		$('.mover .kb_toc .kb_toc_content_container:first').appendTo('#container-left');
		$('.mover #container-leftudm').remove();		
	});
