(function($){
	var initLayout = function() {
		$('a.lightsGal').zoomimage();
		
	};
	var showTab = function(e) {
		var tabIndex = $('ul.navigationTabs a')
							.removeClass('active')
							.index(this);
		$(this)
			.addClass('active')
			.blur();
		$('div.zooimage').zoomimageClear();
		$('div.tab')
			.hide()
				.eq(tabIndex)
				.show();
	};
	EYE.register(initLayout, 'init');
})(jQuery)