/**
 * Description for file
 *
 * JS version $version
 *
 * @author      Firstname Lastname <internet@promacx.ch>
 * @copyright   PROMACX AG / Wasserwerkgasse 20 / 3011 CH-Bern
 * @link        www.promacx.ch
 * @licence     http://www.opensource.org/licenses/mit-license.php The MIT License
 * @version     0.0.1
 */
 
function load_smallCSS(){
	 jQuery("head").append('<link rel="stylesheet" type="text/css" href="fileadmin/templates/stipa/css/screen_small.css" media="screen" />');
	
	/* WRITE SMALL FLASH
			alert(jQuery('#fce-swfobject-alternate-1').attr("id") == null);
	if(jQuery('#fce-swfobject-alternate-1').attr("id") != null){
			var fceswfobject_so = new SWFObject("uploads/tx_templavoila/intro_01.swf", "swfobject1", "600", "289", "9", "e3e4e4");
			fceswfobject_so.write("fce-swfobject-alternate-1");
	} */
}
if(document.documentElement.clientWidth){
	if(document.documentElement.clientWidth < 1100)
		 load_smallCSS();
}else if(window.innerWidth){
	if(window.innerWidth < 1100)
		load_smallCSS();
}else if(document.body.clientWidth){
	if(document.body.clientWidth < 1100)
		load_smallCSS();
}