window.onload = changeform;

function changeform() {
	
	var $currentIFrame = $('#winefinder_frame');
	$currentIFrame.contents().find('body').css('color','#fff');
	//$currentIFrame.contents().find("body P#heading").text('To search for a wine fill out the search form below and click the \"Submit\" button. Results searched by distance are approximate.');
	//$currentIFrame.contents().find("body P:nth-child(2) label").text('Select a Wine:');
	//$currentIFrame.contents().find("body p#findWinePara input:radio[name=findWineOption]").checked = true;
	if ($('#winefinder_frame').length>0) {
	$currentIFrame.contents().find('#winefinderForm P#findWinePara input[name="findWineOption"]')[0].checked = true;
	}

	$('#findStoreForm').submit(function(e) {
				e.preventDefault();
				// Display an external page using an iframe
				var modalH = $(window).height() - 50;
				var modalW = $(window).width() - 50;
				var src = "/WineFinderBrands/locateWine.action?WebSiteId=17&zipCode="+$('#txtZip').val()+"&radius=10&flavor="+$('#varietal_code').attr('value');
				$.modal('<iframe src="' + src + '" height="'+modalH+'" width="'+modalW+'" style="border:0">', {
					containerCss:{
						backgroundColor:"#000",
						borderColor:"#999",
						height:modalH,
						padding:0,
						width:modalW
					},
					overlayClose:true
				});
			});

}

