// B.H.

window.ghotbox = {
	cat_id: -1,
	art_id: -1,
	current: null,
	select: function(what) {
		//alert(what);
		elm = $('gallery_hotbox_container');
		elm.innerHTML = '<div style="text-align:center;padding: 20px"><img src="/images/gallery_new/ajax-loader1.gif" alt="טוען..." /></div>';
		if (this.current) this.current.removeClassName('gallery_hotbox_header_item_selected');
		this.current = $('gallery_hotbox_'+what).addClassName('gallery_hotbox_header_item_selected');
		
		new Ajax.Updater('gallery_hotbox_container', '/mk_ajax_server.php',{
			method: 'get',
			parameters: { op: 'gallery_hotbox', cat_id: this.cat_id, art_id: this.art_id, what: what }
		}); 
	}
};
