
function load_back()
{
the_number = Math.round(Math.random()*3)+1;
document.getElementById('back_img').src="/front" + the_number + ".jpg";
}

/*	
	-- slide --

function show_content(Vpage)
{
if (parseInt(obj('content_area').left)>40)
 {
 act('changeObject(\'content_area\',\'left\',\'2\',\'%\',\'-\',\'40\')', 1);
 act('changeObject(\'menu_items\',\'width\',\'2\',\'%\',\'-\',\'35\')', 1);
 content_frame.location = Vpage;
 }
else
 {
	flipPage(Vpage);
 }
}

function flipPage(Vpage)
{
if (parseInt(obj('content_area').left)<105)
 {
 act('changeObject(\'content_area\',\'left\',\'10\',\'%\',\'+\',\'105\')', 1);
 act('changeObject(\'menu_items\',\'width\',\'10\',\'%\',\'+\',\'100\')', 1,  'flipPage(\''+Vpage+'\')');
 }
else
 {
 act('changeObject(\'content_area\',\'left\',\'10\',\'%\',\'-\',\'40\')', 1);
 act('changeObject(\'menu_items\',\'width\',\'10\',\'%\',\'-\',\'35\')', 1);
 content_frame.location = Vpage;
 }

}
*/