/* <![CDATA[ */

// S E T T I N G S
var IE = (document.all) ? false : true;


// g e t E l e m e n t
function getElement(id) {
	if (IE) return document.getElementById(id);
	else return document.all[id];
}

// shows the bigger image of the employee
function showMitarbeiter(id) {
	obj = getElement('mitarbeiterBild');
	obj.src = 'img/team/'+id+'.jpg';
}

// shows the bigger image of the saloon
function showSalon(id) {
	obj = getElement('salonimage');
	obj.src = 'img/salon/'+id+'.jpg';
}

// loads the layout images
function preloadLayout() {
	img = new Array();
	img[0] = new Image();
	img[0].src = 'img/adverts.gif';
	img[1] = new Image();
	img[1].src = 'img/background.jpg';
	img[2] = new Image();
	img[2].src = 'img/footer_bg.jpg';
	img[3] = new Image();
	img[3].src = 'img/menu_bg.jpg';
	img[4] = new Image();
	img[4].src = 'img/top_bg.jpg';
}

// loads the menu images
function preloadMenu() {
	img = new Array();
	img[0] = new Image();
	img[0].src = 'img/angebote.gif';
	img[1] = new Image();
	img[1].src = 'img/home.gif';
	img[2] = new Image();
	img[2].src = 'img/philosophie.gif';
	img[3] = new Image();
	img[3].src = 'img/preise.gif';
	img[4] = new Image();
	img[4].src = 'img/salon.gif';
	img[5] = new Image();
	img[5].src = 'img/team.gif';
}

// loads the employee images
function preloadMitarbeiter() {
	img = new Array();
	img[0] = new Image();
	img[0].src = 'img/team/ma1.jpg';
	img[1] = new Image();
	img[1].src = 'img/team/ma2.jpg';
	img[2] = new Image();
	img[2].src = 'img/team/ma3.jpg';
	img[3] = new Image();
	img[3].src = 'img/team/ma4.jpg';
	img[4] = new Image();
	img[4].src = 'img/team/ma5.jpg';
	img[5] = new Image();
	img[5].src = 'img/team/ma6.jpg';
}

// loads the employee images
function preloadBackground() {
	img = new Array();
	img[0] = new Image();
	img[0].src = 'img/background/content_bg.jpg';
	img[1] = new Image();
	img[1].src = 'img/background/content_bg_home.jpg';
	img[2] = new Image();
	img[2].src = 'img/background/content_bg_philosophie.jpg';
	img[3] = new Image();
	img[3].src = 'img/background/content_bg_salon.jpg';
	img[4] = new Image();
	img[4].src = 'img/background/content_bg_team.jpg';
	img[5] = new Image();
	img[5].src = 'img/background/content_bg_preise.jpg';
	img[6] = new Image();
	img[6].src = 'img/background/content_bg_angebote.jpg';
	img[7] = new Image();
	img[7].src = 'img/background/content_bg_impressum.jpg';
	img[8] = new Image();
	img[8].src = 'img/background/content_bg_kontakt.jpg';
}

// loads the salon images
function preloadSalon() {
	img = new Array();
	img[0] = new Image();
	img[0].src = 'img/salon/salon1.jpg';
	img[1] = new Image();
	img[1].src = 'img/salon/salon2.jpg';
	img[2] = new Image();
	img[2].src = 'img/salon/salon3.jpg';
	img[3] = new Image();
	img[3].src = 'img/salon/salon4.jpg';
}

preloadMenu();
preloadLayout();
preloadBackground();
preloadMitarbeiter();
preloadSalon();

/* ]]> */
