/*
 * 
 * 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() {
						   var varjs;
						   if(screen.width > 1024){
							  $("link").attr("href", "stylo_big.css");
							  varjs=1000;
						   }
						   else {

	if ((screen.width>=1024) && (screen.height>=768))
	{
		//alert('Screen size: my grande');
		//$("link[rel=stylesheet]:not(:first)").attr({href : "stylo.css"});
		 $("link").attr("href", "stylo.css");
		 varjs=800;
		 
	}
	else
	{
		alert('Su resolucion no es la adecuada para ver esta web.');
		//$("link[rel=stylesheet]:not(:first)").attr({href : "detect800.css"});
	}
						   }
});

