// JavaScript Document

$(document).ready(function(){
	
	// Forms: Dealer Locator - By Zip Code
	// ---------------------------------------------------------------------------------------------------------------------------	
	$('#dealerLocatorPageForm #btnDealerFindByZip').click(function(){
		// Validate Zip Code:
		if($('#dealerLocatorPageForm #dealerFind_zip').val().length==0 || isNaN($('#dealerLocatorPageForm #dealerFind_zip').val()))
		{
			alert("Please specify a valid zip code.");
			$('#dealerLocatorPageForm #dealerFind_zip').focus();
		}
		else
		{	location.href="/dealer/zip/" + $('#dealerLocatorPageForm #dealerFind_zip').val() + "/" + $('#dealerLocatorPageForm #dealerFind_range option:selected').val();	}
	});
	
	// ---------------------------------------------------------------------------------------------------------------------------

});


function showSizeData(tireGUID)
{
	$('#tireSizeDataPanel_data').html('');
	$('#tireSizeDataPanel_loading').show();
	
	//'href':'#tireSizeDataPanel'
	/*
		'onStart':function(){
			$('#tireSizeDataPanel_data').load('/tire/size/' + tireGUID,function(){				
				$('#tireSizeDataPanel_loading').hide('fast');
			});		
		}
	*/	
	
	$.fancybox({
		'type':'iframe',
		'href':'/tire/sizeframe/' + tireGUID,
		'scrolling':'auto',
		'width':1300,
		'height':700,
		'autoDimensions':false,
		'padding':15,
		'overlayColor':'#222'
	});		
}

