$(function(){
$('.hoverable').hover(
	function(){ 
		$(this).css('opacity','0.8').css('cursor','pointer');
	},
	function(){ 
		$(this).css('opacity','1');
	}
	)
});
