$(document).ready(function() {
	$('.inline a').lightBox({
		imageLoading:'/i/lightbox-ico-loading.gif',
		imageBtnPrev:'/i/lightbox-btn-prev.gif',
		imageBtnNext:'/i/lightbox-btn-next.gif',
		imageBtnClose:'/i/lightbox-btn-close.gif',
		imageBlank:'/i/lightbox-blank.gif',
		txtImage:'Фото',txtOf:'из'
	});
	
	$('#slider').carousel('#btn_previous', '#btn_next');
	
	//The auto-scrolling function
	function slide(){
		$('#btn_next').click();
	}
	//Launch the scroll every 2 seconds
	var slider_intervalId = window.setInterval(slide, 4000);

	//On user click deactivate auto-scrolling
	/*
	$('#btn_previous, #btn_next').click(
		function(){
			window.clearInterval(slider_intervalId);
		}
	);
	*/
});

function postComment()
{
	$("#comments").parent().load("/comments/", $("#comments_form").serializeArray(),function(responseText, textStatus, XMLHttpRequest){
		//alert(responseText);
	});
	return false;
}