			var animate = new Array('<a href="http://www.rst-shop.ru/index.php?productID=1416"><img src="http://www.rst-shop.ru/published/publicdata/RSTSHOPRU/attachments/SC/images/banners/desire_hd_2.jpg" width="400" height="400" alt="Desire HD" /></a>', '<a href="http://www.rst-shop.ru/index.php?productID=1431"><img src="http://www.rst-shop.ru/published/publicdata/RSTSHOPRU/attachments/SC/images/banners/p1000-samsung.jpg" width="400" height="400" alt="Samsung tab" /></a>', '<a href="http://www.rst-shop.ru/index.php?productID=1276"><img src="http://www.rst-shop.ru/published/publicdata/RSTSHOPRU/attachments/SC/images/banners/S7070.jpg" alt="Женский телефон Samsung S7070" width="404" height="375" /></a>');
			function reimg (id, colimg, count, timeload, timehide, timeshow)
			{					
				$("#"+id).fadeTo(timeload,1, function(){ 
					$("#"+id).fadeTo(timehide,0, function(){
						count++;
						if (count == colimg){
							count=0;
						}
						$("#"+id).html(animate[count]);
						$("#"+id).fadeTo(timeshow,1, function(){
							reimg(id, colimg, count, timeload, timehide, timeshow);
						});							
					});
				});	
			}
			
			$(window).load(function(){
				reimg('animate',3,0,5000,600,600); 
			});
