// JavaScript Document
function buttonComeIn ( element ) {
	element.style.backgroundColor = '#FFFFFF';
	element.firstChild.style.color = '#000000';  
}
function buttonGoOut ( element ) {
	element.style.backgroundColor = '';
	element.firstChild.style.color = '#000000';
}
function buttonOver (element, bgColor, txtColor) {
}
function buttonOut ( element, bgColor, txtColor) {
}
function buttonButonLink ( targen ) {
}
function changePicture ( element ) {
}