var Features = {
	selectPlatform: function(obj) {
		if (this.currObj==null){
			var list = getElementsByClassName('selected-tab-menu','div');
			this.currObj = list[0];
		}
		this.currObj.className = "tab-menu";
		obj.className = "selected-tab-menu";
		this.currObj = obj;
		if (this.currPlatform == "platform1"){
			$("platform1").style.display = "none";
			$("platform2").style.display = "block";
			this.currPlatform = "platform2";
			if (this.firstTime){
				GlobalAccordion.init('feature-title-container','feature-details','platform2');

				this.firstTime = false;
			}
		} else {
			$("platform1").style.display = "block";
			$("platform2").style.display = "none";
			this.currPlatform = "platform1";
		}
	},
	currPlatform: "platform1",
	currObj: null,
	firstTime: true
};

