/**
 * @author jmcginnis
 */

google.setOnLoadCallback(function(){
   _initPngFix();
   _initCustomerHover();
});
function _initCustomerHover()
{
	$('ul.customerslogolist li').hover(function() {
		$(this).children('div').addClass('hover');
	}, function() {
  		$(this).children('div').removeClass('hover');
	});
}
function _initPngFix()
{
	load_ifixpng();
	$('li.mckesson').ifixpng();
	$('li.pg').ifixpng();
	$('.herofreetrial h4').ifixpng();
}