﻿var slideShowSpeed = 5000; var t; var ftx = -1; var fty = -1; var ftm = -1; var yazarSayi = 1;
var mAnimation = true;

function MansetGoruntule(n) {  $("div#oneCikResimler img").hide(); $("div#oneCikResimler img").eq(n).show(); $("div.ocItem").hide(); $("div.ocItem").eq(n).show(); var getpx = 45 * n; $("div#oneCikSayilar").css("background-position", "-" + getpx + "px 0"); }
function MansetAnimation() { if (mAnimation) { ftm++; if (ftm > 4) { ftm = 0; } MansetGoruntule(ftm); } t = setTimeout('MansetAnimation()', slideShowSpeed); }

$(document).ready(function () {
    $("a[rel^='prettyphoto']").prettyPhoto({ theme: 'facebook' }); ;
    $("div#oneCikSayilar a").each(function (i) { var n = i; $(this).bind("mouseenter", function (e) { MansetGoruntule(n); ftm = n; mAnimation = false; }); $(this).bind("mouseleave", function (e) { mAnimation = true; }); });
    MansetAnimation();
    $('div#yazarCerv').serialScroll({ items: 'div#yazarInside div.yItemGroup', prev: 'div#yazarSolOk a', next: 'div#yazarSagOk a', duration: 1200, force: true, step: 1, stop: false, lock: false, cycle: true, jump: false });

    $("div#girisReklam a").click();
});


