$(function(){
$('#nav li a.fade').append('<span class="hover"></span>')
$('#nav .hover').css("filter","alpha(opacity=00)");

$('#nav li a.fade').hover(function() {

// Stuff that happens when you hover on + the stop()
$('.hover', this).stop().animate({
'opacity': 1
}, 200,'easeOutSine')
},function() {

// Stuff that happens when you unhover + the stop()
$('.hover', this).stop().animate({
'opacity': 0
}, 400, 'easeOutQuad')
})

});


$(function(){
$('.post .post_left').css("filter","alpha(opacity=00)");

$('.post').hover(function() {

// Stuff that happens when you hover on + the stop()
$('.post_left', this).stop().animate({
'opacity': 1
}, 400,'easeOutSine')
},function() {

// Stuff that happens when you unhover + the stop()
$('.post_left', this).stop().animate({
'opacity': 0
}, 600, 'easeOutQuad')
})

});




