// JavaScript Document

(function($) {
		  
	$.single_slide = function() {
		if($('.single img').size() > 1) {
			$('.single img:gt(0)').hide();
			setInterval(function(){
				$('.single :first-child').fadeOut()
				.next('img').fadeIn()
				.end().appendTo('.single');}, 
		  5000);
		}
	};
	
	
	$.left_slide = function() {
		if($('.left img').size() > 1) {
			$('.left img:gt(0)').hide();
			setInterval(function(){
			 $('.left :first-child').delay(3000).fadeOut()
			 .next('img').fadeIn()
			 .end().appendTo('.left');}, 
		  5000);
		}
	};
	
	
	$.center_slide = function() {
		if($('.center img').size() > 1) {
			$('.center img:gt(0)').hide();
			setInterval(function(){
				$('.center :first-child').fadeOut()
				.next('img').fadeIn()
				.end().appendTo('.center');},
		  5000);
		}
	};

})(jQuery);
