$(document).ready(function(){
	$("input#tv").click(function(){
		$("input[@name='keyw_str']").setValue($("input[@name='q']").getValue());
		$('#form_tv').removeClass('hidden');
		$('#cse-search-box').addClass('hidden');
	});
	$("input#google").click(function(){
		$("input[@name='q']").setValue($("input[@name='keyw_str']").getValue());
		$('#form_tv').addClass('hidden');
		$('#cse-search-box').removeClass('hidden');
	});
});
