$(document).ready(function(){

	/* Clickable list items */

	if($(".clickable li").length) {

		$(".clickable > li").css("cursor", "pointer")

		$(".clickable > li").hover(function(){
			$("> .inner", this).addClass("hover");
		},function(){
			$("> .inner", this).removeClass("hover");
		});

		$(".clickable li").click(function(){
			document.location = $("a.more:first", this).attr("href");
		});

	}

});