$(document).ready(function() {    $.supersized({            slides  :  	[ {image : 'images/bg.jpg'} ]    });    $("a.zoom").fancybox({            'overlayShow'	: false,            'transitionIn'	: 'elastic',            'transitionOut'	: 'fadeOut'    });    $("a.zoom , a.imgfx").hover(function(){        $(this).stop().animate({opacity : '0.6'});    }, function(){        $(this).stop().animate({opacity : '1'});    });});
