﻿jQuery(window).load(function() { if (jQuery("#customerlogo_image img").length > 0) { jQuery("#customerlogo_image img").not(".current_img").css({ display: "none" }); interval = setInterval(function() { k_fader("#customerlogo_image img", "1") }, 7500) } }); function k_fader(f, a) { var e = jQuery(f); var b = e.filter(":visible"); var c; var d; e.css("visibility", "visible"); if (e.length > 1) { for (i = 0; i < e.length; i++) { if (e[i] == b[0]) { d = a >= 0 ? i != e.length - 1 ? i + 1 : 0 : i == 0 ? e.length - 1 : i - 1; c = jQuery(e[d]); break } } if (c.css("display") == "none") { b.css({ zIndex: 2 }); c.css({ zIndex: 3 }).fadeIn(500, function() { b.css({ display: "none" }) }) } } };
