function cycleImages(){
	  var active = $('#slides img.active');
	  var next = (active.next().length > 0) ? active.next() : $('#slides img:first');
	  next.css('z-index',2);//move the next image up the pile
	  active.fadeOut(2500,function(){//fade out the top image
		active.css('z-index',1).show().removeClass('active');//reset the z-index and unhide the image
		next.css('z-index',3).addClass('active');//make the next image the top one
	 });
}

$(document).ready(function() {
	function divresize(block) {
		var windowHeight = $(window).height(); //определяем высоту окна браузера
		$(block).css('height',windowHeight); //устанавливаем высоту блока(равно высоте окна за вычетом шапки и подвала)
	}
	
	divresize('#bg_pic'); //вызываем функцию изменения размера блока
	$(window).bind("resize", function(){ //при изменении размера окна вызываем функцию
		divresize('#bg_pic'); 
	});
		
	
		
	setInterval("cycleImages()", 5000);
	/*
	$("#slides").slides({
		play: 2500,
		effect: 'fade',
		fadeSpeed: 2500,
		crossfade: true
	});*/
});
