$(document).ready(function objMenu_load() {
	/* Menu is now handled in menu_tree.js
	if ($('mainMenu')){
		var objMenu = new NavTree('mainMenu');
		objMenu.blnAutoFoldNeighbours = false;
		objMenu.init();
	}
	*/


	$('a[@rel*=lightbox]').lightBox();

	/*
	$("#all_def").hide();
	$("#showLink").show();

	$("#toggleDiv").click(function () {
		$(".showHideLink").toggle();
		if ($("#all_def").is(":hidden")) {
			$("#all_def").slideDown("normal");
		} else {
			$("#all_def").slideUp("normal");
		}
	});
	*/

	if ($('.rssLink').length > 0) {

		$('a[title].rssLink').qtip({

			content: newsToolTipText,

		  position: {
		     corner: {
		        target: 'topMiddle',
		        tooltip: 'bottomMiddle'
		     }
		  },
		  style: {
		     name: 'green',
		     padding: '7px 13px',
		     width: {
		        max: 210,
		        min: 0
		     },
		     tip: true
		  }
		});
	}

	$('li.headlink ul', this).hide();
	$('div.headerBottomContent', this).show();

	$('li.headlink').hover(
		function() { $('ul', this).show(); },
		function() { $('ul', this).hide(); }
	);

});







