if (typeof (NP) === "undefined") { var NP = {}; }
if (typeof (NP.MainAction) === "undefined") {
    NP.MainAction = {};
}
NP.MainAction = (function() {
    // Declare any object-wide variables here with a brief comment about what they are 
    var partWrapperId; // Unique string that identifies the block(or div) in the page
    var partWrapperSel; // partWrapperId with a # appended for use in jQuery selectors
	
	
    var RegisterEventHandlers = function() {
        $(partWrapperSel).click(function(event) {
            target = $(event.target);
			if(target.is('.menu-link')){
				target.toggleClass('menu-active');
			}
			
			

        });
    };
    //End Private methods
    return {
        // Public Methods
        Init: function(partId,pageId) {
            partWrapperId = partId;
            partWrapperSel = "#" + partId;
            RegisterEventHandlers();
        }

    }; //end return
 
} ());
