$(document).ready(function() {
	function clickMe(){
		// the function returns $(this) as each li item, so the a href attribute is: 
		var linkid = $(this).find('a').attr('href');
		// in this example i use the href to open an url
		window.location = linkid; return false;
	}

	var defaults = {ulPadding:0,
		velocity: 300,
		edges:0,
		debug: false,
		extendClick: null
		}
    $("#easeMenu").easeMenu(defaults);
});
