$(window).load(function()
{
$( '#content' ).fadeIn("700", 0.0);
$( '#content' ).fadeIn("700", 1.0);
$('a').click(function(){
$('#content').fadeOut("700");
setTimeout("nav('"+this.href+"')",1000);
return false;
});
});
function nav(href){
location.href=href;
};


$(function() {
// OPACITY OF BUTTON SET TO 100%
$(".attachment-thumbnail").css("opacity","1");
 
// ON MOUSE OVER
$(".attachment-thumbnail").hover(function () {
 
// SET OPACITY TO 60%
$(this).stop().animate({
opacity: 0.60
}, "fast");
},
 
// ON MOUSE OUT
function () {
 
// SET OPACITY BACK TO 100%
$(this).stop().animate({
opacity: 1
}, "slow");
});
});

