jQuery(document).ready(function(){
	jQuery("span.link").mouseover(function(){
		if(jQuery(this).is('.link'))
			jQuery(this).addClass('hovered');
	}).mouseout(function(){
		if(jQuery(this).is('.link'))
			jQuery(this).removeClass('hovered');
	})
})