$('img', '#jq_op')
	.mouseover(function (){
		$(this).attr('op',$(this).css('opacity'));
		$(this).animate({opacity: 1}, 500 );
	})
	.mouseout(function (){
		$(this).animate({opacity: $(this).attr('op')}, 500 );
	});
