$(function() {
	
//Set the default directory to find the images needed
//by the plugin (closebtn.png, blank.gif, loading images ....)
$.fn.fancyzoom.defaultsOptions.imgDir='http://www.clickfashion.pl/public/scripts/fancyzoom/ressources/';

// Select all links in object with gallery ID using the defaults options
$('#publikacje a').fancyzoom(); 
//$('#session_div a').fancyzoom({showoverlay:false}); 

// Select all links with tozoom class, set the open animation time to 1000
//$('a.tozoom').fancyzoom({Speed:1000});
//$('#session_div a').fancyzoom({Speed:1000});

// Select all links set the overlay opacity to 80%
//$('#session_div a').fancyzoom({overlay:0.8});

//New, you can now apply the fancy zoom effect on an image
//apply the fancyzoom effect on all images that have the fancyzoom class
//$("img.fancyzoom").fancyzoom();

});
