/*
 * 
 * Part of article How to detect screen size and apply a CSS style
 * http://www.ilovecolors.com.ar/detect-screen-size-css-style/
 * 1440 x 800 is for 15" Macbook native, 1280 x 800 is for 13" Macbook native
 */

$(document).ready(function() {

	if ((screen.width>=1440) && (screen.height>=800))
	{
		
		$("link[rel=stylesheet]:not(:first)").attr({href : "http://design.yorku.ca/ysdn.css"});
	}
	else
	{
		
		$("link[rel=stylesheet]:not(:first)").attr({href : "http://design.yorku.ca/ysdn-small.css"});
	}
});


