/*
 * 
 * Part of article How to detect screen size and apply a CSS style
 * http://www.ilovecolors.com.ar/detect-screen-size-css-style/
 *
 */

$(document).ready(function() {
/*
	if ((screen.height>850))
	{
		$("link[rel=stylesheet]:not(:first)").attr({href : "/lib/style_big.css"});
		if(navigator.appName == "Microsoft Internet Explorer")
		{
		    $("link[rel=stylesheet]:not(:first)").attr({href : "/lib/IE_big.css"});
		}
	}

        else if ((screen.height==768) && (screen.width==1024))
        {
                $("link[rel=stylesheet]:not(:first)").attr({href : "/lib/style_1024.css"});
                if(navigator.appName == "Microsoft Internet Explorer")
                {
                    $("link[rel=stylesheet]:not(:first)").attr({href : "/lib/IE_1024.css"});
                }
        }
	else
	{
		$("link[rel=stylesheet]:not(:first)").attr({href : "/lib/style.css"});
		if(navigator.appName == "Microsoft Internet Explorer")
		{
		    $("link[rel=stylesheet]:not(:first)").attr({href : "/lib/IE.css"});
		}
	}*/
});



