$(function(){$('.subNavigation').each(function(){$(this).parent().eq(0).hover(function(){$('.subNavigation:eq(0)',this).show();$(this).css("background-color","#E6E5E1");$(this).children('a').css("padding-bottom","5px");$(this).children('span').css("padding-bottom","5px");},function(){$('.subNavigation:eq(0)',this).hide();$(this).css("background-color","#FFF");$(this).children('a').css("padding-bottom","30px");$(this).children('span').css("padding-bottom","30px");});});$('.readMoreContent').hide();$('.sectionLink').click(function(){$('.readMoreContent').show();$('.readMore').each(function(){$(this).html('Read Less');});});$('.readMore').click(function(){$(this).prev('.readMoreContent').toggle();if($(this).html()=='Read More'){$(this).html('Read Less');}else{$(this).html('Read More');}});});
