﻿$(document).ready(function() {
    showImageBox();

});

function showImageBox() {
    var contents = document.getElementsByClassName('blindcontent');
    var toggles = document.getElementsByClassName('blindtitle');
    var myAccordion = new fx.Accordion(
					toggles, contents, { opacity: true, duration: 400 }
				);
    myAccordion.showThisHideOpen(contents[0]);
}