var sLink = window.location.href.toLowerCase();
//alert(sLink.indexOf("http://"));
if( sLink.indexOf("http://") > -1 )
{
	if( sLink.indexOf("www.")  == -1 )
	{
		window.location.href = sLink.replace( "http://" , "http://www." );
	}
}
if( sLink == "http://www.healthyoga.com/index.php")
{
		window.location = "http://www.healthyoga.com/";
}

