$(document).ready(function() {

	$('#topNavLeft li.globalNavItem').mouseover(function() {
		$(this).stopTime('controlled');
		
		$(this).everyTime(250,'controlled2',function() {
			$(this).addClass('globalNavItemOver');
		});
	});
	$('#topNavLeft li.globalNavItem').mouseout(function() {
		$(this).stopTime('controlled2');
		$(this).everyTime(300,'controlled',function() {
			$(this).removeClass('globalNavItemOver');
		});
	});
	
});