Untitled Document
<script></script>
<script>
$(function() {
$(window).scroll(function() {
var height = $(this).scrollTop();
if (height>10)
{
$(".ornek").fadeIn(800);
$(".ornek").css("position","fixed");
}
if (height<10)
{
$(".ornek").fadeOut(800);
}
});
});
</script>