jQuery(document).ready(function($) {
	// Setup vars
	var googleUrl = 'http://www.google.com/search';
	var wordPressUrl = MMM_URL;
	
	// Setup markup
	$('#mmm-searchform').append('\
		<div id="searchform-powered"><strong>Powered By:</strong><br/>\
			<label for="search-google"><input type="radio" id="search-google" name="search-kind" value="Powered By Google" rel="' + googleUrl + '" queryvar="q" />Google</label>\
			<label for="search-wordpress"><input type="radio" id="search-wordpress" name="search-kind" checked="checked" value="Powered By Wordpress" rel="' + wordPressUrl + '" queryvar="s" />Wordpress</label>\
		</div>\
	');
	// Setup eventhander
	$('#searchform-powered input[type=radio]').focus(function() {
		$('#mmm-searchform').attr('action', $(this).attr('rel'));
		$('#s').attr('name',$(this).attr('queryvar'));
	});
});