$(document).ready(function() {
  
  // Zooming all the images that need to be zoomed
	$("a.zoomimage").fancybox({
		'speedIn' 		  :	400, 
		'speedOut'		  :	200, 
    'transitionIn'  : 'elastic',
    'easingIn'      : 'swing',
    'opacity'       : true,
    'titlePosition' : 'inside',
		'overlayShow'	  :	true,
    'overlayColor'  : '#000',
    'overlayOpacity': 0.5
	});
	$(".zoomimage a").fancybox({
		'speedIn' 		  :	400, 
		'speedOut'		  :	200, 
    'transitionIn'  : 'elastic',
    'easingIn'      : 'swing',
    'opacity'       : true,
    'titlePosition' : 'inside',
		'overlayShow'	  :	true,
    'overlayColor'  : '#000',
    'overlayOpacity': 0.5
	});
});

