//	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		= "styswtgwc2col";
//
function pushStyleArray(css,tit,txt) {
	var nSty = styCss.length;
	styCss[nSty] = css;
	styTit[nSty] = tit;
	styTxt[nSty] = txt;
	}
//
pushStyleArray("gwc2col_clean","Cleanliness: Simple but clear...","Another "
	+ "try-out style. A more spacious and generally relaxed and unconstrained "
	+ "layout.<br />You decide...");
//
//	pushStyleArray("gwc2col_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("gwc2col_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("gwc2col_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("gwc2col_concise","Concise style","A minimalist look, with a very "
	+ "compact display.");
//
pushStyleArray("gwc2col_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("gwc2col_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.");
//
styCtr = styCss.length;
//
//	EOF
//

