
$(document).ready(function() {

	if ((screen.width>=1280) && (screen.height>=768))
	{
		$("link[rel=stylesheet]:not(:first)").attr({href : "style.css"});
	}
	else
	{
		$("link[rel=stylesheet]:not(:first)").attr({href : "small.css"});
	}
});


