$(document).ready(function(){
	$("#viewer").css("opacity", "0");
	$("#viewer").animate({"opacity": "1"}, "slow");
	
	$(".col").animate({"opacity": "0"});
	
	$(".col").hover(
		function() {
			$(this).animate({"opacity": "1"}, "slow");
		},
		function() {
			$(this).animate({"opacity": "0"}, "slow");
		}
	);
	
	$(".col").css("cursor","pointer");
	
});
