/*
 * 
 * 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>1280) && (screen.height>800))
	{
	/*	alert('Screen size: 1024x768 or larger');*/
		$("link[rel=stylesheet]:not(:first)").attr({href : "style2.css"});
	}
	else
	{
	/*	alert('Screen size: less than 1024x768, 800x600 maybe?');*/
		$("link[rel=stylesheet]:not(:first)").attr({href : "style.css"});
	}
});


