// vars
var slide_delay		= 10000;

// run when dom is available
$(document).ready(function(){
	if($('.feature a').length > 1) setTimeout(feature_show, slide_delay);
});

// rotate through all home page features
function feature_show(){
	top_slide = $('.feature a:first');
	$(top_slide).clone().appendTo('.feature');
	$(top_slide).slideUp('slow', function(){ $(top_slide).remove() });
	setTimeout(feature_show, slide_delay)
}