$(document).ready(function(){
	$('#upcoming_list, #subscribe_list').hide();
	$('.tab').click(function(e){
	    e.preventDefault();  // Prevents default action
	    var id = $(this).attr('id');  // Stores the id of the clicked tab
	    $('.mini_buck_list').hide();  // Hides all the tab_lists
	    $('#' + id + '_list').show(); // Shows the tab correlating to the clicked tab
	});

	var imagecount = $('#slider .slide').size();
	var fadeInt = setInterval(function(){ fadeIt(); }, 8000);
})
function fadeIt(){
	$('#slider div.active').fadeOut('slow', function(){
		$(this).removeClass('active');
		if($('#slider div.next').is(':last-child')){
			$('#slider div.next').removeClass('next').addClass('active');
			$('#slider .slide:first-child').addClass('next');
		} else {
			$('#slider div.next').removeClass('next').addClass('active').next('div').addClass('next');
		}
	$('.next').show();
	})
$('#slider div.next').fadeIn('slow');
}
