// JavaScript Document

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

function foreground(id){
	document.getElementById(id).style.borderColor='#3e5ba9';
	document.getElementById(id).style.color='black';
}

function background(id){
	document.getElementById(id).style.borderColor='black';
	document.getElementById(id).style.color='#666666';
	
}