$(document).ready( function() {
	var search_date=$.cookie('strat_search_date');
	var search_auth=$.cookie('strat_search_auth');
	var search_title=$.cookie('strat_search_auth');
	$("#order_date").bind("click", function() {
			var search_date=$.cookie('strat_search_date');
			if(!search_date || search_date=='false')
				$.cookie('strat_search_date', true);
			else
				$.cookie('strat_search_date', false);
			$.cookie('strat_search_auth', '', { expires: -1 });
			$.cookie('strat_search_title', '', { expires: -1 }); 
			location.reload(); 
			//alert(search_date);
        });
	$("#order_auth").bind("click", function() {
			var search_auth=$.cookie('strat_search_auth');
			if(!search_auth || search_auth=='false')
				$.cookie('strat_search_auth', true);
			else
				$.cookie('strat_search_auth', false);
			$.cookie('strat_search_date', '', { expires: -1 }); 
			$.cookie('strat_search_title', '', { expires: -1 }); 
			location.reload(); 
			//alert(search_auth);
        });
    $("#order_title").bind("click", function() {
			var search_title=$.cookie('strat_search_title');
			if(!search_title || search_title=='false')
				$.cookie('strat_search_title', true);
			else
				$.cookie('strat_search_title', false);
			$.cookie('strat_search_date', '', { expires: -1 }); 
			$.cookie('strat_search_auth', '', { expires: -1 }); 
			location.reload(); 
			//alert(search_title);
        });
});