$(document).ready(function() {
	$('#awty').click(function() {
		$('#blackContainer').fadeIn('slow', function() {
		});
	});
	$('#close').click(function() {
		$('#blackContainer').fadeOut('slow', function() {
		});
	});
});

$(document).ready(function(){
	$("div.recent").fadeTo("slow", 0.6); // This sets the opacity of the thumbs to fade down to 60% when the page loads

	$("div.recent").hover(function(){
		$(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
	},function(){
		$(this).fadeTo("slow", 0.6); // This should set the opacity back to 60% on mouseout
	});
});


$(document).ready(function(){
	$("div#rightInfo ul li a").removeAttr("href");
	$("p.tagList a").removeAttr("href");
});
