/*!
 * mouseover met fade
 * http://bavotasan.com/2009/creating-a-jquery-mouseover-fade-effect/
 */

$(document).ready(function(){
 
$("img.a, img.b, img.c, img.col1, img.col2, img.col3, img.col4, img.col5, img.col6, img.col7, img.col8").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});
 
});


