$(function() {
// OPACITY OF BUTTON SET TO 50%
$(".left .blogList li").css("opacity","0.7");
		
// ON MOUSE OVER
$(".left .blogList li").hover(function () {
										  
// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 1.0
}, "medium");
},
		
// ON MOUSE OUT
function () {
			
// SET OPACITY BACK TO 50%
$(this).stop().animate({
opacity: 0.7
}, "medium");
});
});




$(function() {
// OPACITY OF BUTTON SET TO 50%
$(".layout_bottom .left img").css("opacity","0.2");
		
// ON MOUSE OVER
$(".layout_bottom .left img").hover(function () {
										  
// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 1.0
}, "medium");
},
		
// ON MOUSE OUT
function () {
			
// SET OPACITY BACK TO 50%
$(this).stop().animate({
opacity: 0.2
}, "medium");
});
});





