(function($){
	var initLayout = function() {
		$('a.gallery').zoomimage({
			controlsTrigger: 'mouseover',
			className: 'custom',
			shadow: 5,
			controls: false,
			centered: true,
			hideSource: true,
			opacity: 0.7,
			beforeZoomIn: function(boxID) {
				var id = $(this).attr("name");
				$.ajax({
					type: "GET",
					url: "kurios.php",
					data: "action=addview&pic=" + id,
		   			success: function(data){
					} 
				});
				$('#' + boxID)
					.find('img')
					.css('opacity', 0)
					.animate(
						{'opacity':1},
						{ duration: 500, queue: false }
					);
			},
			beforeZoomOut: function(boxID) {
				$('#' + boxID)
					.find('img')
					.css('opacity', 1)
					.animate(
						{'opacity':0},
						{ duration: 500, queue: false }
					);
			}
		});
	};

	EYE.register(initLayout, 'init');
})(jQuery)