/*
$(document).ready(function (){
	$(".result_center").click(function (){
		window.open($(this).find("a").attr("href"), "");
		return false;
		
	});
});
*/