var a_searchbox_images = new Array;
a_searchbox_images[0] = new Array;
a_searchbox_images[0][0] = new Image;
a_searchbox_images[0][0].src = 'img/tab_0_flights_off.png';
a_searchbox_images[0][1] = new Image;
a_searchbox_images[0][1].src = 'img/tab_0_flights_on.png';
a_searchbox_images[1] = new Array;
a_searchbox_images[1][0] = new Image;
a_searchbox_images[1][0].src = 'img/tab_1_hotels_off.png';
a_searchbox_images[1][1] = new Image;
a_searchbox_images[1][1].src = 'img/tab_1_hotels_on.png';
a_searchbox_images[2] = new Array;
a_searchbox_images[2][0] = new Image;
a_searchbox_images[2][0].src = 'img/tab_2_cars_off.png';
a_searchbox_images[2][1] = new Image;
a_searchbox_images[2][1].src = 'img/tab_2_cars_on.png';
a_searchbox_images[3] = new Array;
a_searchbox_images[3][0] = new Image;
a_searchbox_images[3][0].src = 'img/tab_3_flight_hotel_off.png';
a_searchbox_images[3][1] = new Image;
a_searchbox_images[3][1].src = 'img/tab_3_flight_hotel_on.png';
a_searchbox_images[4] = new Array;
a_searchbox_images[4][0] = new Image;
a_searchbox_images[4][0].src = 'img/tab_4_flight_car_off.png';
a_searchbox_images[4][1] = new Image;
a_searchbox_images[4][1].src = 'img/tab_4_flight_car_on.png';
a_searchbox_images[5] = new Array;
a_searchbox_images[5][0] = new Image;
a_searchbox_images[5][0].src = 'img/tab_5_full_package_off.png';
a_searchbox_images[5][1] = new Image;
a_searchbox_images[5][1].src = 'img/tab_5_full_package_on.png';

function fn_searchbox_select(i_select) {
	document.all('div_searchbox'+i_searchbox_selected).style.display = 'none';
	document.all('img_searchbox'+i_searchbox_selected).src = a_searchbox_images[i_searchbox_selected][0].src;
	i_searchbox_selected = i_select;
	document.all('div_searchbox'+i_searchbox_selected).style.display = 'block';
	document.all('img_searchbox'+i_searchbox_selected).src = a_searchbox_images[i_searchbox_selected][1].src;
}
