var ribbit = document.getElementById('FrogJS');
// Adds loading message to FrogJS DIV
ribbit.innerHTML += 'Gallery loading&hellip;<img src="/news/wp-content/gallery_hv/loading.gif" mce_src="/news/wp-content/gallery_hv/loading.gif" />';
// Hides thumbnails while gallery loads
var anchors = ribbit.getElementsByTagName('a');
for (var i=0; i<anchors .length; i++){
	anchors[i].style.display = 'none';
}
