function search(id){
	keyword = document.getElementById(id).value;
	if(!!keyword)
	{
		location.href ="/search/" + keyword + "/";
	}
	else
	{
		return false;
	}
}

$(document).ready(function(){
	$("#show_others_left").click(function(){
		$("#others_left").toggle(2000);
		return false;
	});
	$("#show_others").click(function(){
		$("#others").toggle(2000);
		return false;
	});
});

