$(document).ready(function(){
	var ca_timer;
	var defaultCA = $('div.menu-pic > a.clients');
	var currentCA = defaultCA;
	$('div.menu-pic > a').each(function(){
		var link = $(this);
		link.mouseover(function(){
			clearTimeout(ca_timer);
			ca_timer = setTimeout(function(){ 
				if (currentCA.attr('class') != link.attr('class')) {
					zoomCA(link);
				}
			},200);
		});
		link.add('> img.zoom2').mouseleave(function(){
			if (defaultCA.attr('class') != link.attr('class')) {
				clearTimeout(ca_timer);
				ca_timer = setTimeout(function(){
						zoomCA(defaultCA);
				},200);
			}
		});
	});
	
	function zoomCA (newCA){
		currentCA.css("z-index","1").find('img.zoom2').css("display","none");
		currentCA = newCA;
		newCA.css("z-index","12");
		if (jQuery.browser.msie) {
			newCA.find('img.zoom2').show();
		} else {
			newCA.find('img.zoom2').fadeIn(600);
		}
	}
});
