
// Vertical align carroussel image / height independant 
function vertAlign(pImg) {
var lHeight = pImg.clientHeight;
var lParentHeight = pImg.parentNode.clientHeight;
pImg.style.marginTop = ((lParentHeight - lHeight)/2 ) + 44 + "px";
}


