/*
 * 	Easy Slider - jQuery plugin
 *	written by Alen Grakalic	
 *	http://cssglobe.com/post/3783/jquery-plugin-easy-image-or-content-slider
 *
 *	Copyright (c) 2009 Alen Grakalic (http://cssglobe.com)
 *	Dual licensed under the MIT (MIT-LICENSE.txt)
 *	and GPL (GPL-LICENSE.txt) licenses.
 *
 *	Built for jQuery library
 *	http://jquery.com
 *
 */
 
/*
 *	markup example for $("#images").easySlider();
 *	
 * 	<div id="images">
 *		<ul>
 *			<li><img src="images/01.jpg" alt="" /></li>
 *			<li><img src="images/02.jpg" alt="" /></li>
 *			<li><img src="images/03.jpg" alt="" /></li>
 *			<li><img src="images/04.jpg" alt="" /></li>
 *			<li><img src="images/05.jpg" alt="" /></li>
 *		</ul>
 *	</div>
 *
 */

(function($) {

	$.fn.easySlider = function(options){
	  
		// default configuration properties
		var defaults = {
			prevId: 		'prevBtn',
			prevText: 		'Previous',
			nextId: 		'nextBtn',	
			nextText: 		'Next',
			orientation:	'', //  'vertical' is optional;
			speed: 			1000,
			navbarId:		'#slideshow_nav',
			navbarSelectedImage: '',
			navbarUnSelectedImage: '',
			slideSpeed:		4000
		}; 
		
		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');
			var slideShowInt = setInterval(function() {
				t++;
				t = (t>ts) ? 0 : t; 
				animate(t);
			}, options.slideSpeed);
			
			$("ul", obj).css('width',s*w);			
			if(!vertical) $("li", obj).css('float','left');

			jQuery(options.navbarId).children('li').each(function(i) {
				jQuery(this).children('a').click(function() {
					animate(i);
					clearInterval(slideShowInt);
				});
			});

			function animate(t){					
				if(!vertical) {
					p = (t*w*-1);
					$("ul",obj).animate(
						{ marginLeft: p }, 
						options.speed
					);				
				} else {
					p = (t*h*-1);
					$("ul",obj).animate(
						{ marginTop: p }, 
						options.speed
					);					
				}
				jQuery(options.navbarId).children('li').each(function(i) {
					if (t==i) {
						jQuery(this).children('a').css("background-image","url("+options.navbarSelectedImage+")");
					} else {
						jQuery(this).children('a').css("background-image","url("+options.navbarUnSelectedImage+")");
					}
				});
			};
			if(s>1) $("a","#"+options.nextId).fadeIn();	
		});
	  
	};

})(jQuery);
