var t1, c, o, s, fw, h = 800, of, sf, uo;

function Ileri(){
	if (o == s) return;
	o ++;
	$('#ufakliklar').animate({top: '-='+(uo*73)}, h);
	$('#ileri,#geri').show();
	if (o == s) $('#ileri').hide();
}

function Geri(){
	if (o == 1) return;
	o --;
	$('#ufakliklar').animate({top: '+='+(uo*73)}, h);
	$('#ileri,#geri').show();
	if (o == 1) $('#geri').hide();
}

function FotGit(x){
	if (x == 37 && of){$('BODY').unbind('keydown'); document.location = of;}
	if (x == 39 && sf){$('BODY').unbind('keydown'); document.location = sf;}
}

$(function(){

	$('#menu LI[class!=kucuk]').hide();

	$('#fot, #alb').click(function(){
		$('#menu LI[class!=kucuk]').hide();
		$('#menu LI.'+$(this).attr('className')).toggle();
	});

	if ($('LI.fot A').hasClass('aktif')) $('#menu LI.fot').show();
	if ($('LI.alb A').hasClass('aktif')) $('#menu LI.alb').show();

	$('#ileri').click(Ileri);
	$('#geri').click(Geri);

	if ($('#w_ufakliklar').length){
		$('#w_ufakliklar2').css('height', uo*73);
		$('#ufakliklar').css('top', (-uo*73) * c);
		$('#sayfalama').show();
		if (o == 1) $('#geri').hide();
		if (o == s) $('#ileri').hide();

		$('#w2, #w5').css('width',fw+392);
		$('#w1').css('width',fw+482);
		$('#bilgi').css('width',fw-60);

		$('#w_fotograf IMG').mouseover(function(){
			clearTimeout(t1);
			$('#bilgi').fadeIn(250);
		}).mouseout(function(){
			clearTimeout(t1);
			t1 = setTimeout("$('#bilgi').fadeOut(250)",100);
		});

		$('#bilgi').mouseover(function(){
			clearTimeout(t1);
		});

		$('#sosyal A').attr('target', '_blank');
	}else{
		w=$('#w_icerik').width();
		m = $('#menu').length ? 170 : 0;
		$('#w2, #w5').css('width',w+m+18);
		$('#w1').css('width',w+m+108);
	}

	$('BODY').bind('keydown', function(x){
		FotGit(x.which);
	});

});

