$(document).ready(function(){
	var _tabLink = $('a.tab ,ul.tabs-selector a', 'div.main-tabs');
	var _allID = '';
	_tabLink.each(function(_tL, i){
		var _id = $(this).attr('href');
		_id = _id.substr(_id.indexOf('#'));
		this._id = _id;
		if (i == _tabLink.length-1) _allID += _id;
		else _allID += _id+', ';
		if ($(this).is('.tab')) {
			if ($(this).parent().is('.active')) $(_id).show();
			else $(_id).hide();
		}
	});
	_tabLink.each(function(_tL, i){
		$(this).click(function(){
			_tabLink.parent().removeClass('active');
			_tabLink.filter('[href*='+this._id+']').parent().addClass('active');
			$(_allID).hide();
			$(this._id).show();
			return false;
		})
	});
});

