/*--- ajax tabs ---*/
function initLoad(){
	var _holder = $('div.tab-wrapper');
	var _tabLinks = $('a.tab');
	var _active = _tabLinks.index(_tabLinks.filter('.active:eq(0)'));
	$.ajax({
		type: "GET",
		global: false,
		dataType: "html",
		url: _tabLinks.get(_active).href,
		success: function(msg){
			_tabLinks.get(_active)._box = $(msg);
			_holder.append(_tabLinks.get(_active)._box);
		}
	});
	_tabLinks.click(function(){
		var _el = this;
		if(!$(this).hasClass('active')){
			if(this._box){
				_tabLinks.get(_active)._box.hide();
				this._box.show();
				_active = _tabLinks.index(this);
				_tabLinks.removeClass('active').eq(_active).addClass('active');
			}
			else{
				$.ajax({
					type: "GET",
					global: false,
					dataType: "html",
					url: _el.href,
					success: function(msg){
						_el._box = $(msg);
						_tabLinks.get(_active)._box.hide();
						_holder.append(_el._box);
						_active = _tabLinks.index(_el);
						_tabLinks.removeClass('active').eq(_active).addClass('active');
					}
				});
			}
		}
		return false;
	});
}
$(function(){
	initLoad();
});
