$(document).ready(function(){
 
var resetPos=0;var pos=0;var inputDelayer=delayTimer(3000);var tHREF;var tSRC;$('#home-nav li').children('a').click(function(e){tHREF=$(this).attr("title");tSRC=$(this).attr("href");if($(this).hasClass("hn-active")){e.preventDefault();window.location.replace("http://perumnas.co.id/"+tHREF)}else{e.preventDefault();$("#home-nav .hn-active").removeClass("hn-active");$(this).addClass("hn-active");xpos=$("#home-nav .hn-active").position();resetPos=xpos.left;clearTimeout(inputDelayer());$('#home-img img').fadeOut('fast',function(){$('#home-img').empty();$('#home-img').append("<a href='http://perumnas.co.id/"+tHREF+"'><img src='"+tSRC+"'/></a>");$('#home-link').attr('href','http://perumnas.co.id/'+tHREF+'');$('#home-img').css({opacity:0}).stop().animate({opacity:0},700).animate({opacity:1},300,"easeInOutQuad")})}});inputDelayer(function(){fadeImg()});var fadeCount=0;function fadeImg(){$('#home-img img').fadeOut('fast',function(){fadeCount++;$("#home-nav .hn-active").removeClass("hn-active").addClass("x");if(fadeCount!=8){$("#home-nav .x").parent().next().children("a").addClass("hn-active")}else{$("#home-nav a:first").addClass("hn-active");fadeCount=0};$("#home-nav .x").removeClass("x");xpos=$("#home-nav .hn-active").position();resetPos=xpos.left;tHREF=$("#home-nav .hn-active").attr("title");tSRC=$("#home-nav .hn-active").attr("href");$('#home-img').empty();$('#home-img').append("<a href='http://perumnas.co.id/"+tHREF+"'><img src='"+tSRC+"'/></a>");$('#home-img').css({opacity:0}).stop().animate({opacity:0},700).animate({opacity:1},300,"easeInOutQuad");inputDelayer(function(){fadeImg()})})};function delayTimer(b){var c;return function(a){c=clearTimeout(c);if(a){c=setTimeout(function(){a()},b)};return c}}
 
});