$(document).ready(function(){

	$(".clickable > li").each(function(){

		var self = $(this);
		self.css("cursor", "pointer");

		self.bind("click",function(e){
			e.preventDefault();
			location.href = $("a:first", self).attr("href");
		});

	});

});
