var img_path = 'images/';
var img_def = [ ['image1','logo_04.jpg','logo_04_1.jpg'],
			   ['image2','logo_05.jpg','logo_05_1.jpg'],
			   ['image3','logo_06.jpg','logo_06_1.jpg'],
			   ['image4','logo_08.jpg','logo_08_1.jpg'],
			   ['image5','logo_10.jpg','logo_10_1.jpg']];

function idSetImg(defID, state)
{
	img=document.getElementById(img_def[defID][0]);
	if(state==0)img.src=img_path+img_def[defID][1];else img.src=img_path+img_def[defID][2];
}

function preload_img()
{
	var d=document;
	if(!d.preimg)
	{
		d.preimg=new Array();
		for(var i=0;i<img_def.length;i++)
		{
			d.preimg[i]=new Image;
			d.preimg[i].src=img_def[i][2];
		}
	}
}