// Common Javascript functions file.

// Hover Fade
$(document).ready(function(){
	
	$("img.bg").hide();
	
	$("#footer").fadeTo("slow", 0.5);
	
	$("#footer").hover(function(){
		$(this).stop(true, true).fadeTo("slow", 1.0);
	}, function(){
		$(this).stop(true, true).fadeTo("slow", 0.5);
	});
	
	$("#sidebar > a").addClass(function(i){
		return "thumb" + (i + 1);
	});
	$("#page_thumbnails li").click(function(){
		window.location=$(this).find("a").attr("href");
		return false;
	});
	$("#sidethumblinks li").click(function(){
		window.location=$(this).find("a").attr("href");
		return false;
	});
	
});

