/* 
	this file is for using selectors to provide css where it makes sense, eg - to easily grab nth child of a collection
*/

function css(){
	x = window.location.toString();
	if(x.indexOf("intro") > -1 || x.indexOf("action") == -1){
		// for introduction html, there's no content between the main area vs. footer. height will be set to auto for other pages - they have content to push it down as necessary, but for intro, since nothings there, we'll set the height explicity.
		//$("#folder").css({height:"auto"});
		//$("#folderContent").css({height:"auto"});
		//$("#footer").css("marginTop", "50px");
	}else{
		//$("#folder").css({height:"auto"});
	}
}
