window.onload = changeform;

function changeform() {
	
	var $currentIFrame = $('#winefinder_iframe');
	if( $currentIFrame.length>0 ){
		$currentIFrame.contents().find("body P#heading").text('To search for a tequila fill out the search form below and click the \"Find Now\" button. Results searched by distance are approximate.');
		$currentIFrame.contents().find("body P#findWinePara label#findWineLabel").text('Find Tequila:');
		//$currentIFrame.contents().find('#winefinderForm P#findWinePara input[name="findWineOption"]')[1].checked = true;
		$currentIFrame.contents().find('#winefinderForm P#findWinePara').css('display','block');	
		$currentIFrame.contents().find("body P#availablePara em").text('Tequila availability information is accurate to the best of our knowledge from information provided by independent distributors of our products as of 10/20/10. There is no guarantee that the listed retailers will have the tequila in stock.');
		$currentIFrame.contents().find('#winefinderForm P#findWinePara input[name="findWineOption"]')[0].checked = true;
	}
}

