//	stydat.js	Style-switcher data for each style
//
//	(c) Andy Belcher 2006
//
var styCss		= new Array();
var styTit		= new Array();
var styTxt		= new Array();
var styCtr		= 0;
var styCk		= "styswtgwc";
//
function pushStyleArray(css,tit,txt) {
	var nSty = styCss.length;
	styCss[nSty] = css;
	styTit[nSty] = tit;
	styTxt[nSty] = txt;
	}
//
pushStyleArray("gwc_clean","Cleanliness: Simple but clear...","Another "
	+ "try-out style. A more spacious and generally relaxed and unconstrained "
	+ "layout.<br />You decide...");
//
//pushStyleArray("gwc_cleanrightbar","Clean with RH Nav-bar...","A variant on the 'clean' "
//	+ "style, this has the horizontal nav-bar placed vertically down the "
//	+ "RHS. This will float with the page if it is resized.<br />You decide...");
//
//pushStyleArray("gwc_cleanleftbar","Clean with LH Nav-bar...","A variant on the 'clean' "
//	+ "style, this has the horizontal nav-bar placed vertically down the "
//	+ "LHS. This will float with the page if it is resized.<br />You decide...");
//
pushStyleArray("gwc_candycake","Candycake Style","This particular CSS was put "
	+ "together for a cake designer website; <a target=\"_blank\" "
	+ "href=\"http://www.designercake.co.uk/\" title=\"To the Deignercake "
	+ "website for an example of this style in use...\""
	+ ">www.DesignerCake.Co.UK</a> It uses images tiled into the CSS background "
	+ "which makes a number of visually pleasing effects possible such as the "
	+ "background fades.");
//
pushStyleArray("gwc_concise","Concise style","A minimalist look, with a very "
	+ "compact display.");
//
pushStyleArray("gwc_darkness","Darkness: Light on black...","Display only CSS "
	+ "created to try out this difficult combination. Written information is "
	+ "most easily read as dark writing on a light background. To do light "
	+ "on dark you have to do it really well or it looks bloody awful! "
	+ "<br />You decide...");
//
pushStyleArray("gwc_template","CSS Template - No Styling!","A neutral CSS file with basic "
	+ "elements (but all commented out) added ready to be tweaked to a "
	+ "specific design scheme. Effectively this has a completely "
	+ "blank CSS file, it contains no formatting instructions whatsoever. "
	+ "All that you can see within the main page body is being formatted "
	+ "according to the default settings of your browser.");
//
//	pushStyleArray("wcmsbase","Club Website Style","This particular CSS was put "
//		+ "together for a caving club website; <a target=\"_blank\" "
//		+ "href=\"http://www.wcms.org.uk/\" title=\"To the WCMS "
//		+ "website for an example of this style in use...\""
//		+ ">WWW.WCMS.ORG.UK</a> This style uses a lot of CSS for background colours. "
//		+ "The main feature of this layout is that it is all fully-floating, the "
//		+ "page will produce a sensible display even at the narrowest settings.");
//	//
//	pushStyleArray("tguide","Esoteric Website Style","This particular CSS was put "
//		+ "together for a tarot reading website; <a target=\"_blank\" "
//		+ "href=\"http://www.tarotguidance.co.uk/\" title=\"To the Tarot Guidance "
//		+ "website for an example of this style in use...\""
//		+ ">www.TarotGuidance.Co.UK</a> All of the background images within this "
//		+ "site are achieved using CSS with the images 'wallpapered' into the "
//		+ "background. This is a fixed width display, with a non-scrolling "
//		+ "background, some flexibility in resizing is lost with this sort of "
//		+ "method...");
//	//
//	pushStyleArray("dandylife","DandyLife Website Style","This particular CSS was put "
//		+ "together for a 'family' website; <a target=\"_blank\" "
//		+ "href=\"http://www.dandylife.org/\" title=\"To the DandyLife "
//		+ "website for an example of this style in use...\""
//		+ ">www.DandyLife.Org</a> Another heavy reliance on CSS to 'wallpaper' "
//		+ "fading image strips into the background giving some nice fading effects "
//		+ "with a fairly clean layout...");
//
styCtr = styCss.length;
//
//	EOF
//
