document.documentElement.className = "js-enabled";
$(window).load(function () {


});
//
$(document).ready(function(){
	$('#revolving-images').cycle({
		pauseOnPagerHover: true,
		timeout: 6000,
		pager: '#banner-tabs',
	    // callback fn that creates a thumbnail to use as pager anchor 
	    pagerAnchorBuilder: function(idx, slide) { 
	 		if (idx ==0) {
				return '<li class="first"><a href="#">greener</a></li>';
			} else if (idx == 1) {
				return '<li><a href="#">simpler</a></li>';
			} else if (idx == 2) {
				return '<li><a href="#">better</a></li>';
			}
	    }		
	});
	$('#banner-tabs a').click(function() {
	    $('#revolving-images').cycle('toggle'); 
	});
   	$('ul.cycle').cycle(); 	
});



