// JavaScript Document


$(function() {
        $('#thumbnails a').lightBox();
});

var highlighted_tab = '';

function highlight_tab(tab_id){
	button = "button_"+tab_id;
	tab = "tab_"+tab_id;
	
	old_button = "button_"+ highlighted_tab;
	old_tab = "tab_" + highlighted_tab;
	
	
	document.getElementById(button).className='open_tab_header';
	document.getElementById(tab).className='open_tab_info';
	
	document.getElementById(old_button).className='closed_tab_header';
	document.getElementById(old_tab).className='closed_tab_info';
	
	highlighted_tab = tab_id;
}