$(document).ready(function(){
	//The google search header setup
	$('#searchRow').html('<input id="site-type" type="hidden" name="strSite" value="plusnet" /><div id="searchRadioBttns"><input name="rad" type="radio" id="radPlusnet" value="plusnet" checked="checked"/><label for="radPlusnet" id="PNradio">plus.net</label><input id="radWeb" type="radio" value="web" name="rad"/><label for="radWeb" id="WEBradio">the web</label></div><input type="text" name="strSearchString" size="30" id="searchInput" /> ');
	$("#radPlusnet").click(function () {
		$('#site-type').val('');
		$('#cse').attr("action", "//www.plus.net/search/portalsearch.html");	
	});
	$("#radWeb").click(function () {
		$('#site-type').val('web');
		$('#cse').attr("action", "//www.plus.net/search/index.php");	
	});
});