
function tab_over(element) {

	if(element.firstChild.id == "dbook_tab" || element.firstChild.id == "dbook_tab_sel1") {
	
		element.firstChild.style.backgroundImage = "url(images/dbook/bg_tab_lbsel.gif)";
	
	} else if (element.firstChild.id == "dbook_tabsm_sel1" | element.firstChild.id == "dbook_smtab") {
				element.firstChild.style.backgroundImage = "url(images/dbook/bg_tabsm_sel.gif)";
	} else {
		// dbook_tab2 or dbook_tab_sel2
		element.firstChild.style.backgroundImage = "url(images/dbook/bg_tab_dbsel.gif)";

	}

	//element.firstChild.firstChild.style.color = "green";
	//element.firstChild.firstChild.style.fontWeight = "bold";

}

function tab_out(element) {

	if(element.firstChild.id == "dbook_tab") {
		element.firstChild.style.backgroundImage = "url(images/dbook/bg_tab_lbnorm.gif)";

	} else if (element.firstChild.id == "dbook_tab_sel1") {
		element.firstChild.style.backgroundImage = "url(images/dbook/bg_tab_lbover.gif)";
		//element.firstChild.firstChild.style.color = "green";
		element.firstChild.firstChild.style.fontWeight = "bold";


	} else if (element.firstChild.id == "dbook_tab_sel2") {
				element.firstChild.style.backgroundImage = "url(images/dbook/bg_tab_dbover.gif)";
	} else if (element.firstChild.id == "dbook_smtab") {
				element.firstChild.style.backgroundImage = "url(images/dbook/bg_tabsm_norm.gif)";
	} else if (element.firstChild.id == "dbook_tabsm_sel1") {
				element.firstChild.style.backgroundImage = "url(images/dbook/bg_tabsm_over.gif)";
	} else {
		element.firstChild.style.backgroundImage = "url(images/dbook/bg_tab_dbnorm.gif)";	// dbook_tab2
	}
	
	//element.firstChild.firstChild.style.fontWeight = "normal";
	//element.firstChild.firstChild.style.color = "black";



}

function open_specials() {

	
	wspecials = window.open("specials/weekly.htm", "wspecials", "width=575,height=600,scrollbars=yes");
	wspecials.focus();

}




function end_video() {

	new Effect.Appear('splash_content');

}


function Show_City(city_name) {

	return document.getElementById(city_name).focus();

}