$(document).ready(function() {
	$("li").hover(	
									function () {$(this).css("cursor", "pointer");}, 
									function () {$(this).css("cursor", "auto");});	

	$("li").click(function () {window.location = $(this).children("a").attr("href");});

});


