/*
*	Autor: V�t Barab�, DiS
*	Version: 0.3
*	Date: 23.12.2011
*	Describe: Script pro automatick� p�esm�rov�n� handheld css stylu na adrese m.url_domena, ��m� zaru�� p�ehr�n� mob�ln� verze webu i na za��zen�ch bez podpory WAP3
*	Updates:
*		23.12.2011 1:11
*			- p�epracov�na metoda p�ep�n�n� styl� dle URL
*			- odstran�na chyba zobrazen� na za��zen�ch, kter� nepodporuj� nebo maj� vypnut� JS ( od ted bude pou�it defaultn� styl pro screen)
*			- nad�le nen� t�eba definovat ru�n� jm�no mobiln�ho stylu, ale pouze pou��t standardn� p�ilinkov�n� stylu a pou�it� media handheld!!!
*		23.12.2011 9:44
*			- vzhledem k jin� struktu�e DOM v IE upraven script pro zaji�t�n� podpory IE
*/
<!--
function isMobile(){
	var pole = new Array();
	pole = window.location.host.split('.');
	if(pole[0] == 'm'){
		return true;
	}
	else {
		return false;
	}
}

if(isMobile() && document.styleSheets.length != 0){
	// hledam handhald style
	for(var i = 0; i < document.styleSheets.length; i++){
		// proto�e IE m� jin=y DOM mus�m kontrolu p�izp�sobit
		if(document.styleSheets[i].media[0] == "handheld" || document.styleSheets[i].media == "handheld"){
			for(var j = 0; j < document.styleSheets.length; j++){
				if(document.styleSheets[j].media[0] == "screen" || document.styleSheets[j].media == "screen"){
					document.styleSheets[j].disabled = true;
					if(document.styleSheets[j].media[0] == "screen"){
						document.styleSheets[i].media.mediaText = "screen";
					}
					if(document.styleSheets[j].media == "screen"){
						document.styleSheets[i].media = "screen";
					}
					break;
				}
			}
			break;
		}
	}
}
//-->
