/*
 * 
 * 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))
	{
		//alert('Screen size: 1024x768 or larger');
		$("link[rel=stylesheet]").attr({href : "http://www.paristnchamber.com/2011/styles/style.css"});
	}
	else
	{
		//alert('Screen size: less than 1024x768, 800x600 maybe?');
		$("link[rel=stylesheet]").attr({href : "http://www.paristnchamber.com/2011/styles/1024.css"});
	}
});


