/****************************************************
* Initialise Phone Details Tabs						*
*													*
*****************************************************/

var helpQuestionsTabs = false;

var HelpQuestionsTabsClass = Class.create({	
	init: function(){
		if($('#help-questions-tabs li').length > 0 && $('#help-questions-tabs li').length == $('#help-questions-layers .layer').length){
			$.each($('#help-questions-tabs li'), function(i, li){
				$(li).bind({
					'click': function(){
						$('#help-questions-layers .layer').removeClass('layer-active');
						$(this).parent().find('li').removeClass('active');
						$(this).addClass('active');
						$.each($('#help-questions-layers .layer'), function(j, layer){
							if(i == j){ $(layer).addClass('layer-active'); }
						});
					}
				});
			});
		}
	}
});

function initHelpQuestionsPage(){
	helpQuestionsPage = true;
	helpQuestionsTabs = new HelpQuestionsTabsClass();
}

$(function(){
	initHelpQuestionsPage();
});

