// JavaScript Document

function loadMenuSectionTop(section, type)
{
	document.getElementById(section).style.backgroundImage = 'url("images/menu/section_top_'+type+'.jpg")';
}

function loadMenuSection(section, type)
{
	document.getElementById(section).style.backgroundImage = 'url("images/menu/section_'+type+'.jpg")';
}

function loadMenuSubSection(section, type)
{
	document.getElementById(section).style.backgroundImage = 'url("images/menu/sub_section_'+type+'.jpg")';
}

function loadMenuSectionBottom(section, type)
{
	document.getElementById(section).style.backgroundImage = 'url("images/menu/section_bottom_'+type+'.jpg")';
}

// Preload Images
var menuBottom = new Image(); 
menuBottom.src = 'images/menu/section_bottom_on.jpg';

var menuSection = new Image(); 
menuSection.src = 'images/menu/section_on.jpg';

var menuSectionTop = new Image(); 
menuSectionTop.src = 'images/menu/section_top_on.jpg';

var menuSubSection = new Image(); 
menuSubSection.src = 'images/menu/sub_section_on.jpg';