	var cssNode = document.createElement('link');
	cssNode.setAttribute('rel', 'stylesheet');
	cssNode.setAttribute('type', 'text/css');
	if(typeof( window.innerWidth ) == 'number' ){
		//firefox
		cssNode.setAttribute('href', 'media/css/style_ff.css');
	}else{
		//IE
		cssNode.setAttribute('href', 'media/css/style_ie.css');
	}
	document.getElementsByTagName('head')[0].appendChild(cssNode); 
