(function($){$.fn.easySlider=function(options){var defaults={prevId:'prevBtn',prevIdIn:'prevBtnin',prevText:'',nextId:'nextBtn',nextIdIn:'nextBtnin',divId:'himnakan',nextText:'',orientation:'',speed:1000,ulId:'ul',ulWidth:350};var options=$.extend(defaults,options);return this.each(function(){obj=$(this);var s=$("li",obj).length;var w=obj.width();var h=obj.height();var ts=s-1;var t=0;var vertical=(options.orientation=='vertical');if(s==0){$("#"+options.ulId).css('width',options.ulWidth);}
else{$("#"+options.ulId).css('width',s*w);}
if(!vertical)$("li",obj).css('float','left');var parent=$(obj).parent().parent().children(":first");$(parent).before('<div id="'+options.divId+'"><div id="'+options.prevId+'"><a href=\"javascript:void(0);\">'+options.prevText+'</a></div> <div id="'+options.nextId+'"><a href=\"javascript:void(0);\">'+options.nextText+'</a></div></div>');if(t>=ts){$("#"+options.prevId).attr('id',options.prevIdIn);$("#"+options.nextId).attr('id',options.nextIdIn);}
$("a","#"+options.nextId).click(function(){animate("next");if(t>=ts)$("#"+options.nextId).attr('id',options.nextIdIn)
$("#"+options.prevIdIn).attr('id',options.prevId);$("a","#"+options.prevId).fadeIn();});$("a","#"+options.prevId).click(function(){animate("prev");if(t<=0)$("#"+options.prevId).attr('id',options.prevIdIn);$("#"+options.nextIdIn).attr('id',options.nextId);$("a","#"+options.nextId).fadeIn();});function animate(dir){if(dir=="next"){t=(t>=ts)?ts:t+1;}else{t=(t<=0)?0:t-1;};if(!vertical){p=(t*w*-1);$("#"+options.ulId).animate({marginLeft:p},options.speed);}else{p=(t*h*-1);$("#"+options.ulId).animate({marginTop:p},options.speed);}};if(s>1){$("a","#"+options.nextId).fadeIn();$("a","#"+options.prevId).fadeIn();$("#"+options.prevId).attr('id',options.prevIdIn);}});};})(jQuery);
