preloaded = false;
function PreloadImages() {
	if(document.images) {
		img_button_1 = new Image(); img_button_1.src = 'images/button_1.jpg';
		img_button_1_o = new Image(); img_button_1_o.src = 'images/button_1_o.jpg';

		img_button_2 = new Image(); img_button_2.src = 'images/button_2.jpg';
		img_button_2_o = new Image(); img_button_2_o.src = 'images/button_2_o.jpg';

		img_button_3 = new Image(); img_button_3.src = 'images/button_3.jpg';
		img_button_3_o = new Image(); img_button_3_o.src = 'images/button_3_o.jpg';

		img_button_4 = new Image(); img_button_4.src = 'images/button_4.jpg';
		img_button_4_o = new Image(); img_button_4_o.src = 'images/button_4_o.jpg';

		preloaded = true;
	}
}
function ImgOn(imgName){
	if(preloaded) document[imgName].src = eval('img_' + imgName + '_o.src');
}
function ImgOff(imgName){
	if(preloaded) document[imgName].src = eval('img_' + imgName + '.src');
}


function menu_bottom(){
	
	document.write('<tr>');
	document.write('<td height=51 background=images/footer_orange.jpg valign=top>');
	document.write('<table cellpadding=0 cellspacing=0 border=0 width=100%>');
	document.write('<tr>');
	document.write('<td style=\"padding-top:10px; padding-left:12px; color:#ffffff\"><a href=\"index.php\" class=footer>Home</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href=despre.php class=footer>Despre Companie</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href=servicii.php class=footer>Servicii Companie</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href=comenzi_online.php class=footer>Comenzi Online</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href=contact.php class=footer>Contact</a></td>');
	document.write('</tr><tr>');
	document.write('<td class="continut" style="padding-left:12px; color:#ffffff">Copyright &copy; CRISTAXI 2004. Toate drepturile rezervate.</td>');
	document.write('</tr>');
	document.write('</table>');
	document.write('</td>');
	document.write('</tr>');

}