$(document).ready(function() {
	$('div.sub_block, div.volume, div.volume_item').each(function() {
		var a = $(this).find('a');
		if(a)
		{
			$(this).click(function() {
				window.location = a.attr('href');
			});
		}
	});
});
