/*
 * 
 * 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 : "estilos1024.css"});
	}
	else
	{
		$("link[rel=stylesheet]:not(:first)").attr({href : "estilos1260.css"});
	}
});


