$(function(){
	
	// slide-down images on homepage
	$('#sayfa #ani-kutu li').hover(function(){
		$(this).find('img').animate({top:'139px'},{queue:false,duration:500});
	}, function(){
		$(this).find('img').animate({top:'0px'},{queue:false,duration:500});
	});

	$('#gallery').gallerify();
	
	});

jQuery.fn.gallerify = function() 
	{
    	return this.each(function(){
		var images = $('img.thumb',this);
		images.hide().css({opacity:0});
		$(images[0]).show().css({opacity:1});
		
		function showImage() {
			$(this).addClass('current').siblings().removeClass('current');
			var clicked = this;
			images.each(function(){
				if ($(this).is(':visible')) {
					$(this).animate({opacity:0},200,function(){
						$(this).hide();
						$(images[$(clicked).parent().children('li').index(clicked)]).css({display:'block'}).animate({opacity:1},200);
					});
				}
			});
			return false;
		}
	});
}


