
$(document).ready(function(){
	$(".fade").fadeTo("slow", 0.5); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	$(".fade").hover(function(){
	$(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
	},function(){
	$(this).fadeTo("slow", 0.5); // This should set the opacity back to 30% on mouseout
	}); 

	$(".ch1").click(function(){
    	window.location=$(this).find("a:first").attr("href");return false;
	});
	
	$(".ch2").click(function(){
    	window.location=$(this).find("a:first").attr("href");return false;
	});
	
	$(".ch3").click(function(){
    	window.location=$(this).find("a:first").attr("href");return false;
	});

	$(".btn-slide").click(function(){
		$("#panel").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
	
	
	
	$("ul#nav_links a").hover(function(){
	$(this).animateToClass("ul#nav ul#nav_links li a:hover", 1000); // Set the function on hover
	},function(){
	$(this).animateToClass("ul#nav ul#nav_links li a", 1000); // Function reset on mouseout
	});



});
