function left_block_menu (list_id) {

	document.getElementById('leftul_'+list_id).style.display = (document.getElementById('leftul_'+list_id).style.display != 'none' && document.getElementById('leftul_'+list_id).style.display != '') ? 'none' : 'block';

	impath='/img/';

	document.getElementById('leftim_'+list_id).src = (document.getElementById('leftul_'+list_id).style.display != 'none' && document.getElementById('leftul_'+list_id).style.display != '')? impath+'open_f.jpg' : impath+'close_f.jpg';

}

function preload() {

	if (document.images) {

	var imgsrc = preload.arguments;

	arr=new Array(imgsrc.length);

	for (var j=0; j<imgsrc.length; j++)

		{arr[j] = new Image; arr[j].src = imgsrc[j];}

	}

}
