﻿/** 
 * Javascript glue for cbsauce.com
 *
 * @author		Tony Dewan ( tdewan{at}bladv.com )
 * @version		1.0 ( dd-mm-yy)
 */


/**
 * Things that happen when the DOM is loaded. Using jQuery.
 * @see jquery.com
 *
 */
$(document).ready(function(){		
	
	$('#rotate h3:first-child').show().addClass('active');
	
	$('#rotate').everyTime(6000, "flash-switch", function(){
		if( $('#rotate h3.active').is(':last-child') ){
			$('#rotate h3.active').removeClass('active').hide();
			$('#rotate h3:first-child').addClass('active').show();
			return;
		}
		
		$('#rotate h3.active').removeClass('active').hide().next().addClass('active').show();
		
	});

});


Cufon.replace('#rotate h3');