// JavaScript Document
$(function(){
// Hover effect
$(".hoverpicture").hover(
function() {
$("img.a", this).stop().animate({"opacity": "0"}, 300);
},
function() {
$("img.a", this).stop().animate({"opacity": "1"}, 300);
});
});
