function SelectSearchRedirect(searchTerm)
{
	switch (searchTerm.toLowerCase())
	{
	case 'update+me+with+keywords':
	return "/URL/goes/here";
	break;
	
	case 'search':
	return "/all-dresses/dept/fcp-category/categorylist?resetFilters=true";
	break;
	
	case 'mother+of+the+bride':
	return "/motherofthebride/package/fcp-category/categorylist?resetFilters=true";
	break;
	
	case 'shoe':
	return "/fcp/content/news_shoes/single";
	break;
	
	case 'shoes':
	return "/fcp/content/news_shoes/single";
	break;
	
	default:
	return "#";
	}
}

if (pathN.indexOf("search?keywords")+1){
window.location=(SelectSearchRedirect(Right(pathN,(pathN.length-pathN.search(/keywords/i))-9)));
};
