$(function() {
	$('a#btnQAMore').click(function(event){
		event.preventDefault();
		$('ul.questionList li:gt(5)').show();
		$(this).hide();
		return false;
	});
	
	if($('#btn_search').size() > 0){
		$('#btn_search').click(function(){
			var _search_url = $('#frmSearchKeyword').attr('action');
			var _keyword = $('#keyword').val();
			if(_keyword.length == 0) return false;
			self.location.href = _search_url + encodeURIComponent(_keyword);
		});
	}
});
