$(document).ready(function(){	

						   
	//Find the link to the current page in the left nav, and add active class to it
	$("a[href='"+gfUrlActiveJava+"']").addClass("active");
	$("a[href='"+strUrlNameJava+"']").addClass("active");
	$("#subnav .active").removeClass("hoverfade");
	
	$(".litebox").lightBox({fixedNavigation:true});
	
	//$("#slides").each(function(){	
	//	slideshow($(this));	
	//''});	
	
	$(".hoverfade").hover(
		function() {
			$(this).fadeTo(250, 1.00);
		},
		function() {
			$(this).fadeTo(250, 0.60);
		}
	);
	
	$("#topnav li a:not(a.active)").hover(function() {
		$(this).animate({ backgroundColor: "#ddd" }, 250);
	},function() {
		$(this).animate({ backgroundColor: "#F9F9F9" }, 250);
	});
	
							   
	$("#slides").easySlider({
		nextId: "slider1next",
		prevId: "slider1prev"
	});
	
});