﻿/* Queue the Site Load Events
===================================================================================== */
addLoadEvent(initGallery);
//addLoadEvent(initTestimonials);

function initGallery() {
    var links = document.getElementsByClassName('galleryItem', null, 'a');
    for (i=0;i < links.length; i++) {
        links[i].onclick = openImg;
    } 
}
function openImg() {	
  smlImg = this.getElementsByTagName('img')[0] ;
  smlSrc = smlImg.src ;
  lrgSrc = smlSrc.substring(0,smlSrc.lastIndexOf('.')) + ".thumb?w=380&h=400";
  ShowPopup(lrgSrc,lrgSrc,420,400,true);
  return false;
}

//function initTestimonials() {    
//    var item = $j(".testimonials a img");
//    imgWidth = parseInt(item.width())
//    imgHeight = parseInt(item.height())
//    var w = 102 - (Math.round((imgWidth/2)));
//    var h = 93 - (Math.round((imgHeight/2) + 10));
//    $j(".testimonials a img").css("left", w + "px");
//	$j(".testimonials a img").css("top", h + "px");
//}

