﻿//	alert("");


$(function () {
	// old configurator link text update
/*
	alert("");
	if ($(this).attr("href").toLowerCase().indexOf("/configurator") > -1) {
		//$(this).text($(this).text().replace("/Configurator","/Build And Price"));
		return false;
	}
*/
	$("a").click(function (event) {
		if (($(this).attr("href").toLowerCase().indexOf("simon/build%20and%20price") > -1) || ($(this).attr("href").toLowerCase().indexOf("simon/build and price") > -1)) {
			window.open('http://config.nevinsltd.com/flashapp/simon.htm','BuildPrice', 'height=660,width=1000,status=no,menubar=no,location=no,titlebar=no,toolbar=no');
			$(this).attr("href", "#");
			return false;
		}
		else if (($(this).attr("href").toLowerCase().indexOf("conveyance/build%20and%20price") > -1) || ($(this).attr("href").toLowerCase().indexOf("conveyance/build and price") > -1)) {
		
			window.open('http://config.nevinsltd.com/flashapp/conveyance.htm', 'BuildPrice', 'height=660,width=1000,status=no,menubar=no,location=no,titlebar=no,toolbar=no');
			$(this).attr("href", "#");
			return false;
		}
	});
});

