/**
 * Search Replace
 * 
 *  This File is dependent on jQuery
 */

$(function(){ 
	var theNewActionUrl = document.location.href;
	if (theNewActionUrl.indexOf('babynamesworld') >= 0)
	{
		// do nothing
		return;
	}
	else
	{
		var StringLength = theNewActionUrl.indexOf(".com") +4;
		theNewActionUrl = theNewActionUrl.substr(0,StringLength);
		var URLRegEx = /(?:http:\/\/)(\w+)\.([^"]*)\.com/;
		//theNewActionUrl = 'gocitykids'+theNewActionUrl.substring(theNewActionUrl.indexOf('.parentsconnect'),theNewActionUrl.length);
		theNewActionUrl = theNewActionUrl.replace(URLRegEx, "http://gocitykids.$2.com");
		$("#top-nav-search").attr("action",theNewActionUrl+"/searchable/results") 
	} 
});
