/*
 * 
 * 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 ($(window).width() <= 1024)
	{
		$("head").append("<link rel='stylesheet' type='text/css' href='http://www.quebecmunicipal.qc.ca/resources/css/1024.css'></link>");				
	}	
});
