$(window).load(function() {
$('#slider').nivoSlider();
});


$(function() {
            $("#yukaritop").click(function() {
                // sayfamızı kaydıran kod
                $("html,body").stop().animate({ scrollTop: "0" }, 1000);
            });
});
$(window).scroll(function() {
            var uzunluk = $(document).scrollTop();
            // 300 değeri sabit bir uzunluk
            // istersek herhangi bir elemente göre yukarı tuşunu 
            // aktifleştirmek istersek o elementin top değerini bulup
            // bu değere göre yukarı tuşunu aktifleştirebiliriz.
            // if(uzunluk > $("#alanId").position().top) gibi.
            if (uzunluk > 200) $("#yukaritop").fadeIn(500);
            else { $("#yukaritop").fadeOut(500); }
});
