/*code to make other tabs inactive*/
function make_active(id)
{
	
	document.getElementById(id).setAttribute('class', 'current');
	var check_array = new Array('m1','m2','m3','m4','m5','m6','m7','m8');
	var hide_div;
		var j;
	
		var len = check_array.length;
		 
		for (j=0;j< len ;j++)
		{
			 
			hide_div = check_array[j];
			document.getElementById(hide_div).setAttribute('class', 'inactive');
		}
	/*code to make other tabs inactive-ends here*/
	
}

function make_inactive(id)
{
	document.getElementById(id).setAttribute('class', 'inactive');
	 
}
