$("div.center_block img").hover(
	function(){
		this.style.cursor = 'pointer';
		},
	function(){
		this.style.cursor = 'default';
		}
	);
	

