// JavaScript Document

// Swap Images

/*function MyClass(){
this.txt = "Hai";
}

MyClass.prototype.MyFunction = function(message){
this.txt = message;
alert(this.txt);
}

function test(){
var obj = new MyClass();
obj.MyFunction("hai");
}*/

function menuOn(){

if(document.getElementById('menuOn')){

		var src = document.getElementById('menuOn');
		//src.style.background-position = '0 -81px';
		//src.style.color = '#ffffff';
		src.className="selected"
		
			}
//alert("sdsd");
//document.getElementById('menuOn').className="selected";
}

function test(){
alert("in test");
//src.className="selected"
}

