basepage = '';
jQuery(function($) {
	
	$('#gallery .zoom').css({display:'block',opacity:0});
	
	$('a.scrollto').click(function()
	{
		var target = $(this.hash);
		target = target.size() && target || $("[name=" + this.hash.slice(1) +']');
		if (target.size())
		{
			target.ScrollTo(600);
			return false;
		}	
	});	
	
	$('#gallery li .galimage').click(function()
	{
		$('#gallery li').stop().animate({'height':100},400);
		$('#gallery .galinfo').stop().animate({marginTop:5},400);
		$('#gallery .zoom').stop().animate({marginTop:30,opacity:0},400);
		
		pnt = $(this).parent();
		
		if($(pnt).height()<=160)
		{
			$(pnt).stop().animate({height: $(pnt).find('.galimage img').height() },400, function(){ $(this).ScrollTo('normal'); });
			$(pnt).find('.galinfo').stop().animate({marginTop:35},400);
			$(pnt).find('.zoom').stop().animate({marginTop:60,opacity:1},400);
		}
		else
		{
			$('#gallery li').stop().animate({'height':160},400);
			$('#gallery .galinfo').stop().animate({marginTop:25},400);
			$('#gallery .zoom').stop().animate({marginTop:50,opacity:0},400);
		}
		
	});	
	
});


