$(document).ready(function(){
	
		
	var loc = window.location.toString().split("/")
    loc = loc[loc.length - 1]
    $("#rightColumn ul li a[href=\""+loc+"\"]").addClass("selected");

		

	  //drop down
      function addMega(){
        $(this).addClass("hovering");
        }

      function removeMega(){
        $(this).removeClass("hovering");
        }

    var megaConfig = {
         interval: 10,
         sensitivity: 4,
         over: addMega,
         timeout: 10,
         out: removeMega
    };
    $("li.mega").hoverIntent(megaConfig)
	
	
	
	//get current page
	


	
}); // end doc ready


