/*
* funkce pro yobrayovani sedeho divu v galerii
*/

function galleryOnMouseOver(id){
	div = document.getElementById('div_'+id);
	if (div.className != 'selected') {
		div.style.backgroundColor = '#808080';
	}
}

function galleryOnMouseOut(id){
	div = document.getElementById('div_'+id);
	if (div.className != 'selected' ) {
		div.style.backgroundColor = 'white';
	}
}
