//script removed from top of info-page.php for SEO purposes

/* <![CDATA[ */
$(function(){
	$.extend($.fn.disableTextSelect = function() {
		return this.each(function(){
			if($.browser.mozilla){//Firefox
				$(this).css('MozUserSelect','none');
			}else if($.browser.msie){//IE
				$(this).bind('selectstart',function(){return false;});
			}else{//Opera, etc.
				$(this).mousedown(function(){return false;});
			}
		});
	});
	$('.noSelect').disableTextSelect();//No text selection on elements with a class of 'noSelect'
});

$(document).ready(function() {
		// table of contents
		$("div#content :header").each( function() {
			$(this).attr('id', $(this).text().replace(/ /g,'-'));
		});
		$("div#content h1:first").after('<div id="toc"></div>');
		$('#toc').toc({exclude: 'h4, h5, h6'});	
		// disable the cursor select
		$("div#content").addClass("noSelect");
		$('.noSelect').disableTextSelect();
		// disable context-menu
		$('.noSelect').bind("contextmenu",function(e){
            return false;
     });
	});
/* ]]> */