$(document).ready(function() {
	$('img.blt').each(function(i,j) {
		$(this).css('cursor', 'pointer');
		$(this).addClass('sp');
	});
	$('a.blt').each(function(i,j) {
		$(this).css('cursor', 'pointer');
		$(this).click(function() {
			$(this).parent().find('img.blt').click();
			return false;
		});
	});
});