/**
 * @author Administrator
 */
function loadEvent(){
	$("#showOpLink").click(function(){show_item_search_detail();});
	$("#hideOpLink").click(function(){hide_item_search_detail();});
	$("#context_query").hide();
	$("#hideOpLink").hide();
	$("#showOpLink_footer").click(function(){show_item_search_detail_footer();});
	$("#hideOpLink_footer").click(function(){hide_item_search_detail_footer();});
	$("#context_query_footer").hide();
	$("#hideOpLink_footer").hide();
}

function show_item_search_detail(){
	$("#context_query").show();
	$("#showOpLink").hide();
	$("#hideOpLink").show();
}

function hide_item_search_detail(){
	$("#context_query").hide();
	$("#showOpLink").show();
	$("#hideOpLink").hide();
}

function show_item_search_detail_footer(){
	$("#context_query_footer").show();
	$("#showOpLink_footer").hide();
	$("#hideOpLink_footer").show();
}

function hide_item_search_detail_footer(){
	$("#context_query_footer").hide();
	$("#showOpLink_footer").show();
	$("#hideOpLink_footer").hide();
}
