// Just a quick hack to make sure everybody is on the right domain...
var path = document.location.toString();
var targetdomain = "http://www.fordclubsweden.se";
		
if( path.substring(0,targetdomain.length) != targetdomain )
{
	var index = 0;
	var found = false;
	for(index = 7; index < path.length; index++)
	{
		if ( path.substring(index,index+1) == "/" )
		{
			found = true;
			break;
		}								
	}
	
	if ( found == true )
	{
		top.location = targetdomain + path.substring(index, path.length);
	}
	else
	{
		top.location = targetdomain;
	}
}
