function showSection( showId ) { $("#content").children().hide(); $("#content_div_"+showId).show(); $(".pageList").find("[id^=menu_item]").addClass( "unselected" ); $(".pageList").find("[id^=menu_item]").removeClass( "selected" ); $("#menu_item_"+showId).addClass( "selected" ); $("#menu_item_"+showId).removeClass( "unselected" ); window.scrollTo(0,0); } $(document).ready(function() { showSection(1) } );