(function($) {

	$.anythingSlider = function(el, options) {
		// To avoid scope issues, use 'base' instead of 'this'
		// to reference this class from internal events and functions.
		var base = this;

		// Access to jQuery and DOM versions of element
		base.$el = $(el);
		base.el = el;

		// Set up a few defaults
		base.currentPage = 1;
		base.timer = null;
		base.playing = false;

		// Add a reverse reference to the DOM object
		base.$el.data("AnythingSlider", base);

		base.init = function() {
			base.options = $.extend({}, $.anythingSlider.defaults, options);

			// Cache existing DOM elements for later
			base.$wrapper = base.$el.find('> div').css('overflow', 'hidden');
			base.$slider = base.$wrapper.find('> ul');
			base.$items = base.$slider.find('> li');

			base.$single = base.$items.filter(':first');

			if (base.options.buildNavigation) {
				base.buildNavigation();
			}

			base.singleWidth = base.$single.outerWidth();

			base.$items = base.$slider.find('> li'); // reselect

			if (base.options.showArrows) {
				base.buildNextBackButtons();
			}

			if (base.options.autoPlay) {
				base.playing = true;
				base.buildAutoPlay();
			}
			if (base.options.pauseOnHover) {
				base.$el.hover( function() {
					base.clearTimer();
					if (base.options.autoPlay) {
						base.startStop(false); // eklendi
					}
				}, function() {
					if (base.options.autoPlay) {
						base.startStop(true);
					}
				});
			}

			if ((base.options.hashTags == true && !base.gotoHash()) || base.options.hashTags == false) {
				//console.log("110");
				base.$wrapper.find("> ul > li:not(:eq(0))").fadeTo(0,0)
				base.setCurrentPage(1);
				//console.log("112");
			}
			;
		};
		base.gotoPage = function(page, autoplay) {
			if (typeof (page) == "undefined" || page == null) {
				page = 1;
				base.setCurrentPage(1);
			}
			if (base.pages <= 1) {
				return;
			}

			if (page > base.pages + 1)
				page = base.pages;
			if (page < 0)
				page = 1;

			var dir = page < base.currentPage ? -1 : 1, n = Math.abs(base.currentPage - page), left = base.singleWidth * dir * n;

			if (page == 0) {
				page = base.pages;
			} else if (page > base.pages) {
				page = 1;
			}
			base.setCurrentPage(page);

		};
		base.setCurrentPage = function(page, move) {
			if (base.options.buildNavigation) {
				base.$nav.find('.cur').removeClass('cur');
				$(base.$navLinks[page - 1]).addClass('cur');
			}

			/*
			 * base.$wrapper.find("> ul > li").css("display", "none");
			 * base.$wrapper.find("> ul > li:eq(" + (page - 1) +
			 * ")").css("display", "block"); if
			 * ($.isFunction(base.options.onChanged)) {
			 * base.options.onChanged(page, base.currentPage); }
			 */
			if(page != base.currentPage) {
				$eski = base.$wrapper.find("> ul > li:visible");
				$yeni = base.$wrapper.find("> ul > li:eq(" + (page - 1) + ")");
				$eski.stop(false, false).fadeTo(base.options.animationTime, 0, function() {
					$eski.css("display","none");
					$yeni.css("display","block");
					$yeni.stop(false, false).fadeTo(base.options.animationTime, 1, function() {
						if(base.options.hasLoading && $yeni.find(".yukle").size() > 0) {
							LoadThisImage($yeni.find(".yukle"), function() {
								if ($.isFunction(base.options.onChanged)) {
									base.options.onChanged(page, base.currentPage, base.$items[page - 1]);
								}
							});
						} else {
							if ($.isFunction(base.options.onChanged)) {
								base.options.onChanged(page, base.currentPage, base.$items[page - 1]);
							}
						}
					});
				});
			}
			//console.log("page: " + page);
			base.currentPage = page;
		};
		base.goForward = function(autoplay) {
			if (autoplay !== true)
				autoplay = false;

			var np = base.currentPage + 1 > base.$items.size() ? 1 : base.currentPage + 1;
			base.gotoPage(np, autoplay);
		};
		base.goBack = function() {
			var np = base.currentPage - 1 > 0 ? base.currentPage - 1 : base.$items.size();
			base.gotoPage(np);
		};
		// This method tries to find a hash that matches panel-X
		// If found, it tries to find a matching item
		// If that is found as well, then that item starts visible
		base.gotoHash = function() {
			if (/^#?panel-\d+$/.test(window.location.hash)) {
				var index = parseInt(window.location.hash.substr(7));
				var $item = base.$items.filter(':eq(' + index + ')');
				if ($item.length != 0) {
					base.setCurrentPage(index);
					return true;
				}
			}
			return false;
		};
		// Creates the numbered navigation links
		base.buildNavigation = function() {
			base.$nav = $("<div id='thumbNav'></div>").appendTo(base.$el);
			base.$items.each( function(i, el) {
				var index = i + 1;
				var $a = $("<a href='javascript:void(0);'></a>");

				// If a formatter function is present, use it
				if (typeof (base.options.navigationFormatter) == "function") {
					$a.html(base.options.navigationFormatter(index, $(this)));
				} else {
					$a.text(index);
				}
				$a.click( function(e) {
					base.gotoPage(index);

					if (base.options.hashTags)
						base.setHash('panel-' + index);

					e.preventDefault();
					return false;
				});
				base.$nav.append($a);
			});
			base.$navLinks = base.$nav.find('> a:not(.amadsliderarrow)');
		};
		// Creates the Forward/Backward buttons
		base.buildNextBackButtons = function() {
			var $forward = $('<a class="amadsliderarrow amadsliderarrowforward">&nbsp;</a>'), $back = $('<a class="amadsliderarrow amadsliderarrowback">&nbsp;</a>');

			// Bind to the forward and back buttons
			$back.click( function(e) {
				base.goBack();
				e.preventDefault();
			});
			$forward.click( function(e) {
				base.goForward();
				e.preventDefault();
			});
			// Append elements to page

			if(parseInt(base.$items.size()) > 1) {
				if (base.options.buildNavigation) {
					base.$nav.prepend($back).append($forward);
				} else {
					base.$wrapper.after($back).after($forward);
				}
			}
		};
		// Creates the Start/Stop button
		base.buildAutoPlay = function() {

			base.$startStop = $("<a href='#' id='start-stop' style='display:none;'></a>").html(base.playing ? base.options.stopText : base.options.startText);
			base.$el.append(base.$startStop);
			base.$startStop.click( function(e) {
				base.startStop(!base.playing);
				e.preventDefault();
			});
			// Use the same setting, but trigger the start;
			base.startStop(base.playing);
		};
		// Handles stopping and playing the slideshow
		// Pass startStop(false) to stop and startStop(true) to play
		base.startStop = function(playing) {
			if (playing !== true)
				playing = false; // Default if not supplied is false

			// Update variable
			base.playing = playing;

			// Toggle playing and text
			if (base.options.autoPlay)
				base.$startStop.toggleClass("playing", playing).html(playing ? base.options.stopText : base.options.startText);

			if (playing) {
				base.clearTimer(); // Just in case this was triggered twice in
				// a row
				base.timer = window.setInterval( function() {
					base.goForward(true);
				}, base.options.delay);
			} else {
				base.clearTimer();
			}
			;
		};
		base.clearTimer = function() {
			// Clear the timer only if it is set
			if (base.timer)
				window.clearInterval(base.timer);
		};
		// Taken from AJAXY jquery.history Plugin
		base.setHash = function(hash) {
			// Write hash
			if (typeof window.location.hash !== 'undefined') {
				if (window.location.hash !== hash) {
					window.location.hash = hash;
				}
			} else if (location.hash !== hash) {
				location.hash = hash;
			}

			// Done
			return hash;
		};
		// <-- End AJAXY code

		// Trigger the initialization
		base.init();
	};
	$.anythingSlider.defaults = {
		// * amad
		showArrows : true,
		hasLoading : false,
		// amad *
		easing : "swing", // Anything other than "linear" or "swing" requires
		// the easing plugin
		autoPlay : true, // This turns off the entire FUNCTIONALY, not just
		// if it starts running or not
		delay : 3000, // How long between slide transitions in AutoPlay mode
		animationTime : 600, // How long the slide transition takes
		hashTags : false, // Should links change the hashtag in the URL?
		buildNavigation : true, // If true, builds and list of anchor links to
		// link to each slide
		pauseOnHover : true, // If true, and autoPlay is enabled, the show
		// will pause on hover
		startText : "Start", // Start text
		stopText : "Stop", // Stop text
		navigationFormatter : null,
		onChanged : function() {
			return true;
		},
		onSlide : function() {
			return true;
		}
		// Details at the top of the file on this use (advanced use)
	};

	$.fn.anythingSlider = function(options) {
		if (typeof (options) == "object") {
			return this.each( function(i) {
				(new $.anythingSlider(this, options));

				// This plugin supports multiple instances, but only one can
				// support hash-tag support
				// This disables hash-tags on all items but the first one
				options.hashTags = false;
			});
		} else if (typeof (options) == "number") {

			return this.each( function(i) {
				var anySlide = $(this).data('AnythingSlider');
				if (anySlide) {
					anySlide.startStop(false);
					anySlide.gotoPage(options);
				}
			});
		}
	};
})(jQuery);
