			var $j = jQuery.noConflict();
			$j(document).ready(function(){
				setTimeout("anim(6)", 2000);


				/*if($j(".navigprestation h2:eq(1)").contents("Avob energy saver en")){


					$j(".navigprestation table tr").each(function(){
						$j(this).find("td:first").css("position","relative").css("height","80px").css("width","254px").css("overflow","hidden");
						$j(this).css("display","block").css("margin-top","20px").css("width","708px").css("height","80px").css("overflow","hidden");
					}); 
				

					$j(".navigprestation table tr img").hover(
						function(){
							$j(this).css("z-index","10000");
							$j(this).css("position","absolute");
							$j(this).animate({
								width:304.8,
								height:246
							},150);
						},
						function(){
							$j(this).animate({
								width:254,
								height:205
							},150,function(){
								$j(this).css("z-index","1");
								$j(this).css("position","relative");
							});

						}
					);
				}*/


			});

			function anim(img){
				$j("#teambox > div > ul li img:eq("+img+")").fadeOut(2000,function(){
					if(img == 0){
						$j("#teambox > div > ul li img").show();
						setTimeout("anim(6)", 2000);
					}
					else{
						img--;
						setTimeout("anim("+img+")", 2000);
					}
				});
			}
