/**
 * global.js
 * http://www.awfaction.com
 * @author Martin Bean
 **/

$(document).ready(function() {
	latestFeatures();
	initLightbox();
});

function latestFeatures() {
	var myTabs = $('#latest_features').tabs({ fx: { opacity: 'toggle' } });
	myTabs.tabs('rotate', 4500);
};

function initLightbox() {
	var image_path = root + '/tpl/awf/img/lightbox/';
	$('a[rel=popup]').lightBox({
		imageLoading:   image_path + 'loading.gif',
		imageBtnClose:  image_path + 'close.gif',
		imageBtnPrev:   image_path+ 'prev.gif',
		imageBtnNext:   image_path + 'next.gif',
	});
};