<!--Hizli Erisim-->
$(document).ready(function() {
			$("a.ButtonHizliErisim").click(function(){
				$("div#HizliErisimIcerik").slideToggle("slow");
				$("a.ButtonHizliErisim").toggleClass("ButtonHizliErisimTers");
			});
});

<!--Kullanici Girisi-->
$(document).ready(function() {
			$("a.ButtonKullaniciGirisi").click(function(){
				$("div#KullaniciGirisi").slideToggle("slow");
				$("a.ButtonKullaniciGirisi").toggleClass("ButtonKullaniciGirisiTers");
			});
});

<!--Guncel Haberler-->
$(function(){
	$("div#haber_resimler ul li a").animate({opacity:"0.5"},10);
	$("div#haber_resimler ul li a#haber1").animate({opacity:"1"},10);
	$("div#buyuk_foto ul li.haber1").fadeIn("slow");
	$("div#haber_yazi ul li.haber1").fadeIn("slow");
	$("div#haber_yazi").animate({top:"0px"},500);
	$("div#haber_resimler ul li a").bind("mouseenter",function(){
		var haber = $(this).attr("id");
		$("div#haber_resimler ul li a").animate({opacity:"0.5"},10);
		$("div#buyuk_foto ul li").hide();
		$("div#haber_yazi ul li").hide();
		$(this).animate({opacity:"1"},10);
		$("div#buyuk_foto ul li."+haber+"").show();
		$("div#haber_yazi ul li."+haber+"").show();
	});
	$("div#haber_resimler ul li a").bind("mouseleave",function(){
		return false
	});
});

var scroll_c=0;
<!--Duyuru-->
$(function(){
       $("div.scroll_bttn1").each(function(){
                       var count=0;
                       $(this).find("a").bind("click",function(){
                       if(scroll_c==1){return false}
                       else if(scroll_c==0){scroll_c=1;
                               $.timer(400,function(timer){scroll_c=0;timer.stop();});
                               var frame= $(".scroll_frame1").height(),
                                       content= $(".scroll_content1").height(),
                                       btntype=$(this).attr("class");
                               if(btntype=="down1"){
                                       count-=frame;
                                       if(count<=-content){count=0;}
                                       $(".scroll_content1").animate({marginTop:""+count+"px"},300);
                               }else if(btntype=='up1'){
                                       count+=frame;
                                       if(count>=0){count=0;}
                                       $(".scroll_content1").animate({marginTop:""+count+"px"},300);
                               }
                       }
                       return false
               });
       });
});	

<!--Basin Aciklamalari-->
$(function(){
       $("div.scroll_bttn2").each(function(){
                       var count=0;
                       $(this).find("a").bind("click",function(){
                       if(scroll_c==1){return false}
                       else if(scroll_c==0){scroll_c=1;
                               $.timer(400,function(timer){scroll_c=0;timer.stop();});
                               var frame= $(".scroll_frame2").height(),
                                       content= $(".scroll_content2").height(),
                                       btntype=$(this).attr("class");
                               if(btntype=="down2"){
                                       count-=frame;
                                       if(count<=-content){count=0;}
                                       $(".scroll_content2").animate({marginTop:""+count+"px"},300);
                               }else if(btntype=='up2'){
                                       count+=frame;
                                       if(count>=0){count=0;}
                                       $(".scroll_content2").animate({marginTop:""+count+"px"},300);
                               }
                       }
                       return false
               });
       });
});	