﻿function MM_jumpMenu(selObj){
var id=document.location.toString().split("?");
	id=id[0];
	id=id.replace('#','');
	id+="?Category=";
	
	var faqID=document.getElementById("ddlCategories");
	var faqIndex=document.getElementById("ddlCategories").selectedIndex;
	if(faqIndex!=0)
	{
	window.location=id+selObj.options[selObj.selectedIndex].text;
	}
	else
	{
	window.location=id;
	}
    }
    
     function setSelected()
    {
    //debugger;
	var id=document.location.toString().split("?Category=");
	Category=id[1];	
	  var myElement =document.getElementById('ddlCategories'); 
	       for (var i=0; i< myElement.options.length; i++)
	       {
	       	if(myElement.options[i].text== decodeURI(Category))
	       	{
	       		myElement.selectedIndex=i;
	       	}
        	}	
    }
setSelected();

