(function() {
	$j = jQuery.noConflict();
	$j(document).ready(function() {
		// add font effects
			$j('div.LeftNavigation > div').add('div.LeftNavFlyout a').hover(
					function() {
						$j(this).css( {
							"font-weight" : "bolder",
							"font-style" : "italic"
						});
					}, function() {
						$j(this).css( {
							"font-weight" : "normal",
							"font-style" : "normal"
						});
					});
			// animate flyouts
			$j('div.LeftNavArrowRt').parent().hover(function() {
				var selector = ".sub_" + $j(this).attr('id');
				$j(selector).css('top', $j(this).position().top).animate( {
					width : 'show'
				}, {
					queue : false
				});

			}, function() {
				$j(".sub_" + $j(this).attr('id')).fadeOut();
			});
			//hack to get around z-index bug in ie7
			if ( $j.browser.msie ) {
				var z = 10000;
				$j('div').each(function() {
					$j(this).css('z-index', z);
					z -= 10;
				});	
			}
		});		
})();
