$(document).ready(function(){
$(".col-right img").fadeTo("slow", 0.8);
$(".col-right img").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.8);
});
});
$(document).ready(function(){
$(".date").fadeTo("slow", 1.0);
$(".date").hover(function(){
$(this).fadeTo("slow", 0.5);
},function(){
$(this).fadeTo("slow", 1.0);
});
});