/*
if ( location.hostname != "www.catalent.com" && location.hostname != "japan.catalent.com") {
	window.location = 'http://www.catalent.com/index.php';
}
*/

if (document.location.href.indexOf('/content/searchresults') > 0 || document.location.href.indexOf('/content/rss') > 0 )
{
	var url = document.location.href;
	var newurl = url.replace('content','contents');
	window.location.href =newurl;
}
/*
if(document.location.href == 'http://www.catalent.com' || document.location.href == 'http://www.catalent.com/' || document.location.href == 'http://catalent.com' || document.location.href == 'http://catalent.com/')
{
	window.location ='http://www.catalent.com/index.php';
}
*/
var host = "http://"+location.hostname;
var base = host + "/index.php";
var current_url = document.location.href;
if(current_url.indexOf("index.php#") > 0 && current_url.indexOf("index.php#/overlay/") < 0)
{
	//if(current_url != ( base+'#home') && current_url != ( base+'#development') && current_url != ( base+'#delivery') && current_url != ( base+'#supply')&& current_url != ( base+'#offerings')&& current_url != ( base+'#thinking')&& current_url != ( base+'#news-events')&& current_url != ( base+'#about-us'))
	//{
		current_url = current_url.replace("index.php#","index.php/");
		window.location = current_url;
	//}
}
// added for google search, parent page displays under the overlay page
if (current_url.indexOf("index.php/overlay") > 0)
{
	if (parent != self)
	{
		// iframe, do nothing
	}else
	{
		current_url = current_url.replace("index.php/overlay","index.php#/overlay");
		window.location = current_url;
	}
}
/*
if(document.location.href == (host+'/index.php/development') || document.location.href == (host+'/index.php/node_59') || document.location.href == (host + '/index.php/Entwicklung'))
{
	window.location = host+'/index.php#development';
}
if(document.location.href == (host+'/index.php/delivery') || document.location.href == (host+'/index.php/node_60') || document.location.href == (host+'/index.php/Verabreichung'))
{
	window.location = host+'/index.php#delivery';
}
if(document.location.href == (host+'/index.php/supply') || document.location.href == (host+'/index.php/node_61') || document.location.href == (host+'/index.php/Versorgung'))
{
	window.location = host+'/index.php#supply';
}
if(document.location.href == (host+'/index.php/offerings') || document.location.href == (host+'/index.php/node_62') || document.location.href == (host+'/index.php/Angebote'))
{
	window.location = host+'/index.php#offerings';
}
if(document.location.href == (host+'/index.php/thinking') || document.location.href == (host+'/index.php/node_63') || document.location.href == (host+'/index.php/Denken'))
{
	window.location = host+'/index.php#thinking';
}
if(document.location.href == (host+'/index.php/news-events') || document.location.href == (host+'/index.php/node_64') || document.location.href == (host+'/index.php/Neuigkeiten-Veranstaltungen'))
{
	window.location = host+'/index.php#news-events';
}
if(document.location.href == (host+'/index.php/about-us') || document.location.href == (host+'/index.php/node_65') || document.location.href == (host+'/index.php/Ueber-uns'))
{
	window.location = host+'/index.php#about-us';
}
*/
