function preload_home(){
	if (document.images){
		preload_image1=new Image(478,533);
		preload_image1.src="fileadmin/templates/v1/images/home_img_1.jpg";
		preload_image2=new Image(478,533);
		preload_image2.src="fileadmin/templates/v1/images/home_img_2.jpg";
		preload_image3=new Image(478,533);
		preload_image3.src="fileadmin/templates/v1/images/home_img_3.jpg";
		preload_image4=new Image(478,533);
		preload_image4.src="fileadmin/templates/v1/images/home_img_4.jpg";
	}
}

function image_set(num_img) {
	var home_image=document.getElementById('home_img');
	home_image.firstChild.setAttribute("src","fileadmin/templates/v1/images/home_img_"+num_img+".jpg");
	switch (num_img){
		case 1: home_image.setAttribute("href","index.php?id=103");break;
		case 2: home_image.setAttribute("href","index.php?id=102");break;
		case 3: home_image.setAttribute("href","index.php?id=101");break;
		case 4: home_image.setAttribute("href","index.php?id=112");break;
	}
	
	
}