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


