// JavaScript Document
(function($) {
$.fn.scruffySlideshow = function(options) {
			
		var settings = {
				durationstart: 600,		//zoomed width default width
				durationend: 1000,		//zoomed div default width1
				width:490
		};
		
		$("body").intercept('click', '.slide-link', function(e){
										  
				var $tgt = $(e.target);
				
				$tgt.parent().parent().parent().parent().children().removeClass("active");
				$tgt.parent().parent().parent().addClass("active");
				
				
				$slideshow = $("#slideshow-"+$tgt.attr("post")+" .slideshow-content");
				
				slide = $tgt.attr("slide");
				postion = slide * -490;
				$slideshow.animate({left:postion},200,"easeInOutSine");
				return false;
		});
		
   
};
})(jQuery); 