
$(function()
{
	$('.feature_group_holder_float').mouseover(function()
	{
		$(this).find('.feature_group_view_more:first').addClass('feature_group_view_more_active'); 
		$(this).find('.feature_group_view_more_link:first').addClass('feature_group_view_more_link_active');
	}).mouseout(function()
	{
		$(this).find('.feature_group_view_more:first').removeClass('feature_group_view_more_active'); 
		$(this).find('.feature_group_view_more_link:first').removeClass('feature_group_view_more_link_active');
	});
});