jQuery(document).ready(function() {
	jQuery('.search-result,.search-result-last').bind('click', function() {
		if (this.id) {
			var view_id = this.id.replace(/^result/, 'view');
			window.location = jQuery('#' + view_id).attr('href');
		}
	});
});
