		$(document).ready(function() {

			$("a#header").fancybox({
				'titleShow'		: false,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none'
			});
			
		$("#various1").fancybox({
				"titlePosition"		: "inside",
				
			});
		$("#various1_2").fancybox({
				"titlePosition"		: "inside",
				
			});

		$("#various2").fancybox({
				"transitionIn"		: "none",
				"transitionOut"		: "none",
				'titlePosition' 	: 'over',
				
			});
			

			$("a[rel=group]").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});

			
		});

	function	show () {
			document.getElementById('cform').style.display = "";
			document.getElementById('ccom').focus();
	}
	function	show_off () {
			document.getElementById('cform').style.display = "none";
	}
	
	function auto () {
		if (confirm('Комментировать могут только авторизованные пользователи. Авторизоваться?')){
			document.getElementById('various1').click();
			
			return true;
		}
		else {
			return false;
		}
	}
