/**
 * @author Agencja Interaktywna 8balldesign - http://www.8balldesign.pl
 */

$(document).ready(function() {
jQuery(".fade").fadeIn(1000); 
 jQuery(document)[0].oncontextmenu = function() {return false;} 
 
 jQuery("img.a").hover(
function() {
jQuery(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
jQuery(this).stop().animate({"opacity": "1"}, "slow");
});

 
 
});