// JavaScript Document
$(document).ready(function() {
$('.focus').children().hover(function() {
$(this).stop().fadeTo(300,0.5);
}, function() {
$(this).stop().fadeTo(300,1);
});
});
