// JavaScript Document
$(document).ready( function(){ 
$('#clientLogos').css('display', 'block');
$('#fpl').innerfadeSelect({animationtype: 'fade', speed: 1000 , timeout: 4000, type: 'sequence', containerheight: '325px'}); 
$('#clientLogos').innerfade({animationtype: 'fade', speed: 2000 , timeout: 4000, type: 'sequence', containerheight: '90px'});
$('#homeNewsList').innerfade({animationtype: 'slide', speed: 2000 , timeout: 4000, type: 'sequence', containerheight: '20px'});
}); 




//Adjust top margin of images so they are centered vertically
$(window).load(function() {
$('#clientLogos').css('display', 'block');
$('#clientLogos img').each( function(){
									 
	var elmHeight = $(this).height();
	var containerHeight = $('#clientLogos').height();
	var topOffset = (containerHeight - elmHeight)/2;
	//alert(containerHeight);
	//alert(elmHeight);
	
	
	$(this).css('top', topOffset);
});
});

