$(document).ready(function(){
	
	if(navigator.userAgent.toLowerCase().indexOf('android')==-1 && navigator.userAgent.toLowerCase().indexOf('mobile')==-1){
	
		$('.agendaItem').bind('mouseenter', function() {
			$('.agendaItem').removeClass('selected');
			$(this).addClass('selected');
		});
	}else{
		$('.agendaItem').addClass('selected');
	}
});



