	function fbs_click() {
				u=location.href;
				t=document.title;
				window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
				return false;
	}
	
	
	$(document).ready(
		function(){
			$('.comments_bock_content').hide();
			$('.comments_bock_button').show();
			$('.comments_form_content').hide();
			$('.comments_form_button').show();
			$('.photogallery').cycle({
			    fx:    'zoom', 
			    sync:   0, 
			    delay: -4000 
			 
			});
/*			if ($("#photogallery"))
				try {
					$("#photogallery").jqGalScroll({ease: null,
						speed:0,
						height: 200,
						width: 300,
						titleOpacity : .60,
						direction : 'horizontal'}
						);

				} catch (e){}*/
/*			if ($(".imageprev").length > 0){
				$(".imageprev").imgPreview({});
			}*/
			
		}
	);
	function incrfont(){
		var currentSize = $('html').css('font-size');
		var num = parseFloat(currentSize, 10);
		if (num <=18)
			$('html').css('font-size',num+1+"px");
	}
	function decfont(){
		var currentSize = $('html').css('font-size');
		var num = parseFloat(currentSize, 10);
		if (num >=6)
			$('html').css('font-size',num-1+"px");
	}
	
	function showComments(){
		$('.comments_bock_button').hide();
		$('.comments_bock_content').show('slow');
		
	}

	function closeComments(){
		$('.comments_bock_content').hide();
		$('.comments_bock_button').show();
	}

	function closeCommentsForm(){
		$('.comments_form_content').hide();
		$('.comments_form_button').show();

	}

	function showCommentsForm(){
		$('.comments_form_button').hide();
		$('.comments_form_content').show('slow');
	}
