<!--//
$(document).ready(function(){
	var cycle_time = 5000;
	var tt = 1000;
	var numCycles = $("#scrollup img").size();
	var current = 0;
	var old = 0;
	
	$("#scrollup img:eq(0)").fadeIn(tt);

	function cycleImg(){
		current = (old + 1) % numCycles;
		$("#scrollup img:eq("+old+")").fadeOut(tt);
		$("#scrollup img:eq("+current+")").fadeIn(tt, function(){
				old = current;
		});
	};

	var t = setInterval(cycleImg, cycle_time);
});



/*
$(document).ready(function(){
$('#IEroot #scrollup img').mouseover(function(){
$(this).css({
	"cursor"	:	"hand"
			});
								  });
$('#scrollup img').mouseover(function(){
$(this).css({
	"cursor"	:	"pointer"
			});
								  });
$('#scrollup img').click(function(){
	location.href = "clients.asp"
				});
$('#scrollup').cycle({ 
    fx:      'custom', 
    cssBefore: {  
        left: 1,  
        top:  0,  
        width: 290,  
        height: 145,
		opacity: 0,
        zIndex: 1
    }, 
    animOut: {  
        opacity: 0
    }, 
    animIn: {  
        left: 0,  
        top: 0,  
        width: 290,  
        height: 145,
        opacity:1
    }, 
    cssAfter: {  
        zIndex: 0 
    },
    sync: 1,
    delay: -3000 
});
});*/
//-->
