$(document).ready(function () {
	$.localScroll();
});
$(document).ready(function(){
$(".box img").fadeTo("normal", 0.5);
$(".box img").hover(function(){
$(this).fadeTo("normal", 1.0);
},function(){
$(this).fadeTo("normal", 0.5);
});
});
