if ( typeof ( rooturl ) == "undefined" )
{
	rooturl = "";
}
top10_off = new Image;
top10_on = new Image;
if(thisPage == "top10")
{
	top10_off.src= rooturl + "images/Short_n_Curly/Top10/butt_tabtop10_off.gif";
	top10_on.src= rooturl + "images/Short_n_Curly/Top10/butt_tabtop10_on.gif";
}
else
{
	top10_off.src= rooturl + "images/Short_n_Curly/Xray/butt_tabtop10_off.gif";
	top10_on.src= rooturl + "images/Short_n_Curly/Xray/butt_tabtop10_on.gif";
}

xraygame_off = new Image;
xraygame_on = new Image;

if(thisPage == "xraygame")
{
	xraygame_off.src= rooturl + "images/Short_n_Curly/Xray/butt_tabxray_off.gif";
	xraygame_on.src= rooturl + "images/Short_n_Curly/Xray/butt_tabxray_on.gif";
}
else
{
	xraygame_off.src= rooturl + "images/Short_n_Curly/Top10/butt_tabxray_off.gif";
	xraygame_on.src= rooturl + "images/Short_n_Curly/Top10/butt_tabxray_on.gif";
}

in_thebag_off = new Image;
in_thebag_on = new Image;
if(thisPage == "in_thebag")
{
	in_thebag_off.src= rooturl + "images/Short_n_Curly/InTheBag_bag/butt_tabbag_off.gif";
	in_thebag_on.src= rooturl + "images/Short_n_Curly/InTheBag_bag/butt_tabbag_on.gif";
}
else
{
	in_thebag_off.src= rooturl + "images/Short_n_Curly/Top10/butt_tabbag_off.gif";
	in_thebag_on.src= rooturl + "images/Short_n_Curly/Top10/butt_tabbag_on.gif";
}

ask_libragirl_off = new Image;
ask_libragirl_on = new Image;
ask_libragirl_off.src= rooturl + "images/Short_n_Curly/askLG_public/butt_asklg_off.gif";
ask_libragirl_on.src= rooturl + "images/Short_n_Curly/askLG_public/butt_asklg_on.gif";

libragirlStuff_off = new Image;
libragirlStuff_on = new Image;
libragirlStuff_off.src= rooturl + "images/Short_n_Curly/Top10/butt_lgstuff_off.gif";
libragirlStuff_on.src= rooturl + "images/Short_n_Curly/Top10/butt_lgstuff_on.gif";

searchBtn_off = new Image;
searchBtn_on = new Image;
searchBtn_off.src= rooturl + "images/Short_n_Curly/butt_search_off.gif";
searchBtn_on.src= rooturl + "images/Short_n_Curly/butt_search_on.gif";

backToTopTen_off = new Image;
backToTopTen_on = new Image;
backToTopTen_off.src = rooturl + "images/Short_n_Curly/Question/butt_backto10_off.gif";
backToTopTen_on.src = rooturl + "images/Short_n_Curly/Question/butt_backto10_on.gif";

function setImages() {
	swap(xraygame,xraygame_off);
	swap(top10,top10_off);
	swap(in_thebag,in_thebag_off);
}

function submitQuestionsForm() {
	document.questionsForm.submit();
}

function submitSearch() {
	if (validateSearchForm()) {
		document.cq_searchForm.submit();
	}
}

function validateSearchForm() {
	var i = document.cq_searchForm.searchCategory.selectedIndex;
	var category = document.cq_searchForm.searchCategory.options[i].value;

	if (document.cq_searchForm.searchKeyword.value == "" && category == 0) {
		alert("You must at least enter search string <br>or choose a category");
		return false;
	}
	return true;
}

function submitAskLgForm() {
	if (document.askLgForm.asklg_subject.value == "" || document.askLgForm.asklg_comments.value == "") {
		alert("You must fill in Subject and Question fields");
	}
	else {
		//alert("Submiting Ask LG Form");
		document.askLgForm.asklg_subject.value = convertToEscapes(document.askLgForm.asklg_subject.value);
		document.askLgForm.asklg_comments.value = convertToEscapes(document.askLgForm.asklg_comments.value);
		document.askLgForm.frmAction.value = "submit";
		document.askLgForm.submit();
	}
}



