documentReady("familySelection");

function familySelection(){
	jQuery("#familySelectorDropDown").change(function () {
		if(jQuery(this).attr("value") != '' && jQuery(this).attr("value") != 'helpMeChooseButton')
			window.location = jQuery(this).attr("value");
		else if(jQuery(this).attr('value') == "helpMeChooseButton")
		{
			openVideoPreview($("[id='helpMeChooseButton']").attr("href"));
			return false; // don't let the form submit
		}
	} );
}		


documentReady("productExtrasSelection");
function productExtrasSelection()
{
	jQuery("#otherProducts").change(function () {
		if(jQuery(this).attr("value") != '' && jQuery(this).attr("value") != 'helpMeChooseButton')
			window.location = jQuery(this).attr("value");
		else if(jQuery(this).attr('value') == "helpMeChooseButton")
		{
			openVideoPreview($("[id='helpMeChooseButton']").attr("href"));
			return false; // don't let the form submit
		}
	} );
}	

