// 2007, Tüm hakları saklıdır. Cafer Alkan vatanbir.org

var banner = new banner();
$(document).ready(function() { 
    
// Acilista gizle
$("div#languages").css({ display: "none" });
$("div.bulten_block").css({ display: "none" });

// Kutuyu ac ve kapat
$("a.langtoggle").click(function(){ 
   $("div#languages").toggle('fast');
});

// Kutuyu ac ve kapat
$("a.presstoggle").click(function(){ 
   $(this).next().toggle('fast');
});

// Kutuyu ac ve kapat v2
$("a.presstoggle2").click(function(){ 
   $(this).parent().next().next().toggle('fast');
});

// Navigasyon efektleri
$('#nav .navitem ul').hide();
$('#nav .navitem').hover(function(){
	$(this).find('ul').slideDown('fast');},
	function(){$(this).find('ul').slideUp()
});

banner.create('igallery');

});

function banner(){
	this.number=0;
	this.current=0;
	this.create=function(id){
		$('#'+id+' img').each(function(i){
			if(i!=0)
				$(this).hide();
		});
		this.number = $('#'+id+' img').size()-1;
		$('#next').click(function(){
			if(banner.current<banner.number){
				$($('#igallery img')[banner.current]).fadeOut(250,function(){$($('#igallery img')[banner.current+1]).fadeIn(250);banner.current++;});
			}
		});
		
		$('#previous').click(function(){
			if(banner.current>0){
				$($('#igallery img')[banner.current]).fadeOut(250,function(){$($('#igallery img')[banner.current-1]).fadeIn(250);banner.current--;});
			}
		});
	}
}
