// These scripts are hard coded by Ayat MOhamed, and my property.
// No copies or using of any of these code are allowed without a direct permission.
// My mail is bagaaa@hotmail.com to request for permission.

function checkPath(lang) {
	 strPath = location.href.toLowerCase();		
	if (location.href.toLowerCase().indexOf('en-us') > 0)
	{
		location.href = location.href.toLowerCase().replace('en-us', lang ) ;
	}
	else if (location.href.toLowerCase().indexOf('ar-sa') > 0)
	{
		location.href = location.href.toLowerCase().replace('ar-sa', lang ) ;	
	}
	else
	{
		if (location.href.indexOf('?') > 0) {
		 	location.href = location.href.toLowerCase() + "&lang=" + lang  ;
		 }else{
			location.href = location.href.toLowerCase() + "?lang=" + lang ;
		 }
	}

}

