// makes whole element clickable
// requires element to contain a single <a href="..."> 
$(function(){
	$(".clickable").css('cursor', 'pointer').click(function(e){
		window.location=$(this).find("a").attr("href");
		var vpv = $(this).find("a").attr("onclick");
		vpv(e);
		e.preventDefault;
	});
});
