// adds output data to output div
function output(info) {
	jQuery('#output').html(info);
}
//fades out all table rows after the first parameter except the second parameter, and then fades in the second parameter
function nextstep(last, fader) {
	jQuery(last).nextAll().not(fader).hide();
	jQuery(fader).fadeIn(750);
}

jQuery(document).ready(function(){
	jQuery('#ropetype').fadeIn(750);
	jQuery('#nojscript').hide();
	
	//jQuery('#locator select').change(function() {jQuery(this).children('.empty').hide()});
	
	jQuery('#ropetype select').change(function() {
		if (jQuery(this).val() == 'arborist') {
			nextstep('#ropetype', '#arborist');
		} else if (jQuery(this).val() == 'pmarine') {
			nextstep('#ropetype', '#pmarine');
		} else if (jQuery(this).val() == 'other')  {
			output('<p>Please contact Yale Cordage <a href="/contact">here</a> for more information on distributors for this rope type, or call <strong>207-282-3396</strong>.</p>');
			nextstep('#ropetype', '#output');
		}
	});
	
	jQuery('#arborist select').change(function() {
		if ((jQuery(this).val() == 'us')) {
			output('<p>CA - <strong>Bishop Co.</strong><br /><a href="http://www.bishco.com">www.bishco.com</a><br />Phone: 562-698-9818</p><br /><p>CA - <strong>Bailey&rsquo;s</strong><br /><a href="http://www.baileysonline.com">www.baileysonline.com</a><br />Phone: 707-984-6133</p><br /><p>NC - <strong>Sherrill Tree</strong><br /><a href="http://www.wtsherrill.com">www.wtsherrill.com</a><br />Phone: 800-525-8873</p><br /><p>WA - <strong>Wesspur, LLC</strong><br /><a href="http://www.wesspur.com">www.wesspur.com</a><br />Phone: 360-734-5242</p>');
		} else if ((jQuery(this).val() == 'ca')) {
			output('<p>ON - <strong>Shepherd Utility Equipment Sales LTD.</strong><br /><a href="http://www.shepherds-can.com">www.shepherds-can.com</a><br />Phone: 705-437-2526</p><br /><p>BC - <strong>Pacific Arborist Supplies LTD.</strong><br /><a href="http://www.pacificarborist.com">www.pacificarborist.com</a><br />Phone: 604-929-6133</p><br /><p>QC - <strong>Securite Landry</strong><br /><a href="http://www.securitelandry.com">www.securitelandry.com</a><br />Phone: 514-387-0553</p>');
		} else if ((jQuery(this).val() == 'europe')) {
			output('<p><strong>Safety Green</strong><br /><a href="http://safetygreen.nl">www.safetygreen.nl</a><br />Phone: 31243977583</p><br /><p><strong>Fletcher Stewart (Stockport) Limited</strong><br /><a href="http://www.fletcherstewart.co.uk">www.fletcherstewart.co.uk</a><br />Phone: 441614835542');
		} else if ((jQuery(this).val() == 'australia'))  {
			output('<p><strong>Cannings Outdoor Power Equipment</strong><br /><a href="http://www.cannings.com.au">www.cannings.com.au</a><br />Phone: 61395352666</p>');
		}		 else if ((jQuery(this).val() == 'newzealand'))  {
			output('<p><strong>Levin Sawmakers Ltd.</strong><br /><a href="http://www.timbersaws.co.nz/">http://www.timbersaws.co.nz/</a><br />Phone: 6463682494</p>');
		}		
		jQuery('#output').fadeIn(750);
	});
	
	
	svendsens = '<p>CA - <strong>Svendsens Marine</strong><br /><a href="http://www.svendsens.com">www.svendsens.com</a><br />Phone: 510-521-8454</p><br />';
	rigworks = '<p>CA - <strong>Rigworks</strong><br /><a href="http://www.rigworks.com">www.rigworks.com</a><br />Phone: 619-223-3788</p><br />';
	defender = '<p>CT - <strong>Defender Industries</strong><br /><a href="http://www.defender.com">www.defender.com</a><br />Phone: 800-628-8225</p><br />';
	annapolis = '<p>MD - <strong>Annapolis Performance Sailing</strong><br /><a href="http://www.apsltd.com">www.apsltd.com</a><br />Phone: 800-729-9767</p><br />';
	hamilton = '<p>ME - <strong>Hamilton Marine</strong><br /><a href="http://www.hamiltonmarine.com">www.hamiltonmarine.com</a><br />Phone: 800-639-2715</p><br />';
	rigpro = '<p>RI - <strong>Rig Pro / Southern Spars</strong><br /><a href="http://www.southernspars.com">www.southernspars.com</a><br />Phone: 401-683-6966</p><br />';
	hallspars = '<p>RI - <strong>Hall Spars &amp; Rigging</strong><br /><a href="http://www.hallspars.com">www.hallspars.com</a><br />Phone: 401-253-4858</p><br />';
	fisheries = '<p>WA - <strong>Fisheries Supply</strong><br /><a href="http://www.fisheriessupply.com">www.fisheriessupply.com</a><br />Phone: 800-426-6930</p><br />';
	jQuery('#pmarine select').change(function() {
		if ((jQuery(this).val() == 'anchoring')) {
			output(svendsens+rigworks+defender+hamilton+fisheries);
		} else if ((jQuery(this).val() == 'racing')) {
			output(svendsens+rigworks+annapolis+hamilton+rigpro+hallspars);
		} else if ((jQuery(this).val() == 'cruising'))  {
			output(svendsens+rigworks+hamilton);
		}
		jQuery('#output').fadeIn(750);
	});
	
});

