
$(document).ready (function() {
		$("#coaches-images").find("li").each(function(i) {		
			value = i*70;
			strvalue = value + 'px';
		if(i<=2) { 
			$(this).css({'position':'absolute', 'left': strvalue, 'top':strvalue}); 
		}
		else {
		
			if(i==3)
				newstrvalue='50px';
			else 
				newstrvalue='0px';
			
			$(this).css({'position':'absolute', 'left': newstrvalue, 'top':strvalue}); 
		}
		
		});
		
		$("#coaches-images li").hover ( function() {
			$("#coaches-images li").css({'z-index':'0'});
			$(this).css({'z-index':'100'});
		});
		
		$(".pics").cycle();

});