$().ready(function(){
	specialHover();
});

function specialHover(){
	$(".specialHover").bind('mouseenter',function(){
		$(this).addClass('on');
		//$(this).stop().animate({backgroundColor: '#eeec22'},500);
	}).bind('mouseleave', function(){
		$(this).removeClass('on');
		//$(this).stop().animate({backgroundColor: 'transparent'},500);
	});
}