$(function()
{
	/* Lightbox */
	$("a[href$='jpg']").lightBox();
	
	/* Top Menu */
	$("#nav ul").css({display: "none"}); // Opera Fix
	
	$("#nav li ul li:first-child").css("border-top","1px solid #1978BE");
	
	$("#nav li").hover(
		function()
		{
			$(this).find('ul:first:hidden').fadeIn(200).css("z-index","10");
		},
		function()
		{
			$(this).find('ul:first').fadeOut(200).css("z-index","10");
		}
	);
	
	$("a.hoverfade").hover(
		function(e)
		{
			$("a.hoverfade").stop().animate({opacity:0.5},200);
			$(this).stop().animate({opacity:1},200);
		},
		function(e)
		{
			$("a.hoverfade").stop().animate({opacity:1},200);
		}
	);
	
	/* Print Button */
	$("p.printpage").click(function(e)
	{
		window.print();
	});

});
