$(document).ready(function() {
	
	$('#sideNav div').mouseover(function() {
		$(this).stopTime('controlled');
		
		$(this).everyTime(250,'controlled2',function() {
			$(this).addClass('audienceOver');
		});
	});
	$('#sideNav div').mouseout(function() {
		$(this).stopTime('controlled2');
		$(this).everyTime(300,'controlled',function() {
			$(this).removeClass('audienceOver');
		});
	});
	
});