// JavaScript Document


	var $j = jQuery.noConflict();
	$j(document).ready(function() {
		$j("#headerItems li").hover(function(e) {
				if($j.browser.msie==true && $j.browser.version==6) { $j(this).find('ul').css({left:30}); }
				var o = $j(this).find('a').offset();
				$j(this).find('ul').css({opacity:0, top:5, display:'block'});
				$j(this).find('ul').animate({opacity:1, top:'15px'}, 200);
			}, function(e) {
				$j(this).find('ul').animate({opacity:0,top:'25px'},200, function() { $j(this).css({top:-55, display:'none'}); });
		});
		
		/*if($j.browser.msie!=true || $j.browser.version!=6) {
			$j("a[rel='lightbox']").fancybox({ 'hideOnContentClick': true });
		}*/
		
		$j("#printNav a:first").hide();
		
	});
