jQuery(document).ready(function(){

jQuery('.postinn').css('opacity','0');

jQuery('#latestpost li').hover(function() {
	jQuery(this).find('.postinn')
		.animate({
			opacity: '1', 	
		}, 600); 
		jQuery(this).find('.postinn').fadeIn();

	} , function() {
	jQuery(this).find('.postinn')
		.animate({
			opacity: '0', 	
		}, 1000); 
		jQuery(this).find('.postinn').fadeOut();
});

/*
jQuery('img').hover(function() {
jQuery(this).animate({opacity: 0.6}, "slow");
}, function() {
jQuery(this).animate({opacity: 1}, "slow");
}); 
*/

});
jQuery('#quick-nav p').live('click',function() {
	if(jQuery('#quick-nav').css('left') != "-84px") {
		  jQuery('#quick-nav').animate({
			left: '-84'
		  }, 600, function() {
			jQuery('#quick-nav p').css('background','#1D3855 url(images/qn-banner.jpg) right bottom no-repeat');
		  });
	} else {
		  jQuery('#quick-nav').animate({
			left: '0'
		  }, 600, function() {
			jQuery('#quick-nav p').css('background','#1D3855 url(images/qn-banner.jpg) right top no-repeat');
		  });
	}
	return false;
});
jQuery('#latestpost .bags').live('click',function() {
	window.location.replace(jQuery(this).attr('rel'));
});
