window.addEvent("domready",function () 
{
	var is_small_screen = (screen.width <= 1024) ? 1 : 0;

	// add stylesheet if screen width is smallest
		if (is_small_screen)
		{
			var host = "/";
			if (String(window.location.host).match(/desktopxp|localhost/i)) host+= "www.p4fastel.co.uk/";

			var head = $(document).getElement("head");

			var link = new Element("link", { "type" : "text/css", "rel" : "stylesheet", "href" : host + "style_1024.css" } );
			link.inject(head);
		}

	// write cookie so this script isn't run again
		var myCookie = Cookie.write("P4_SMALL_SCREEN", is_small_screen);

});