/**
 * @author Adam Fogle
 * @version 1.0
 * @projectDescription Common - Events
 */

	$.fn.setUpMenuEvents = function(){
		return this.each(function(){
			var theButton = $(this);			
			
			theButton.click(function(){
				if(theButton.attr("url") != undefined){
				    document.location.href = theButton.attr("url");	
				}
			});
		});		
	}

