/*
 * 	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: 			800	
		}; 
		
		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 cur = $("#cur_slider_page")[0].value;
			var vertical = (options.orientation == 'vertical');
			$("ul", obj).css('width',s*w);			
			if(!vertical) $("li", obj).css('float','left');
			/* $(obj).after('<div id="vv_buttons"><div><span id="'+ options.prevId +'"><a class="vv_buttonsActive" href=\"javascript:void(0);\">'+ options.prevText +'</a></span></div> <div class="spacer">&nbsp;</div><div><span id="'+ options.nextId +'"><a class="vv_buttonsActive" href=\"javascript:void(0);\">'+ options.nextText +'</a></span></div></div>');*/
			$(obj).after('<div id="vv_buttons_left"><span id="'+ options.prevId +'"><a class="vv_buttonsActive" href=\"javascript:void(0);\">'+ options.prevText +'</a></span></div> <div id="vv_buttons_right"><span id="'+ options.nextId +'"><a class="vv_buttonsActive" href=\"javascript:void(0);\">'+ options.nextText +'</a></span></div>');		
      $("a","#"+options.prevId).removeClass("vv_buttonsActive");
			$("a","#"+options.prevId).addClass("vv_buttonsInActive");
			$("a","#"+options.nextId).hide();
			$("a","#"+options.nextId).click(function(){		
				animate("next");
				if (t>=ts) {$(this).removeClass("vv_buttonsActive");$(this).addClass("vv_buttonsInActive");}
				$("a","#"+options.prevId).removeClass("vv_buttonsInActive");
				$("a","#"+options.prevId).addClass("vv_buttonsActive");
			});
			$("a","#"+options.prevId).click(function(){		
				animate("prev");
				if (t<=0) {$(this).removeClass("vv_buttonsActive");$(this).addClass("vv_buttonsInActive");}
				$("a","#"+options.nextId).removeClass("vv_buttonsInActive");
				$("a","#"+options.nextId).addClass("vv_buttonsActive");
			});	
			function animate(dir){
				if(dir == "next"){
					t = (t>=ts) ? ts : t+1;	
				} else {
					t = (t<=0) ? 0 : t-1;
				};
        $("#cur_slider_page")[0].value = 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
					);					
				}
			};
			if(cur>0){
			   t=cur-1;
			   animate('next');
      }
			if(s>1) $("a","#"+options.nextId).fadeIn();	
		});
	  
	};

})(jQuery);

