/*
 * 
 * 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.width>1024) && (screen.height>768))
	{
		
		$("link[rel=stylesheet]:not(:first)").attr({href : "style/global.css"});
	}
	else
	{
		$("link[rel=stylesheet]:not(:first)").attr({href : "style/global86.css"});
	}
});

