CINXE.COM

National Resource Center for The First-Year Experience and Students in Transition

<!doctype html> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]--> <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]--> <!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang=""> <!--<![endif]--> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>National Resource Center for&nbsp;The&nbsp;First-Year Experience and&nbsp;Students&nbsp;in&nbsp;Transition</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="manifest" href="/manifest.json"> <link rel="shortcut icon" href="/publishers/stylus/nrcfye/img/favicon.ico?v=a31b17d9" type="image/x-icon" > <!--<script type="text/javascript" src="/Sites/stylus/js/showhide.js"></script> TODO What is it? --> <link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet"> <link href="/publishers/stylus/nrcfye/styles/styles.css?v=c6ef0853" rel="stylesheet" type="text/css" media="all"> <script type="text/javascript" src="/js/early.js?v=a4a43ff0"></script> </head> <body> <div id="loading" class="loading" style="display: none;"><div class="loading__wrapper"><img src="/img/loading.svg" alt='Loading...' /></div></div> <div id="alert_message" class="stylus"></div> <div id="opacowindow" style="display: none;"></div> <div id="popupwindow" class="popup popupinnerfunctional" style="display: none;"> <div class="box dialog popupwindowcontentinnerfunctional"> <div class="content"> <a href="javascript:void(0)" class="closebutton">✕</a> <div class="title"></div> <div class="popcontent"></div> <div class="buttons"> <a href="javascript:void(0)" class="btn btn-default popupyesbutton"></a> <a href="javascript:void(0)" class="btn btn-default popupoptbutton"></a> <a href="javascript:void(0)" class="btn btn-default popupnobutton"></a> </div> <div class="clear clearfix"></div> </div> </div> </div> <script type="text/javascript">//<![CDATA[ //common popup window object function singlePopupWindow() { //container of popup this.container = null; //handler of yes button this.onAccept = null; //handler of no button this.onCancel = null; //handler of optional button this.onOptional = null; //id of window this.idPopup = 0; //z-index of window this.zIndex = 0; //fixed this.fixed = false; //if no text set for button, it will not be displayed //if you using buttons at content - dont forget to close popupwindow at their handlers this.open = function(aOptions) { //save id and z-index this.idPopup = aOptions.id; this.zIndex = aOptions.zindex; if (typeof aOptions.fixed != 'undefined') { this.fixed = aOptions.fixed; } //copy popup this.container = $('#popupwindow').clone(); //set id and z-index this.container.attr('id', 'popupwindow' + aOptions.id); this.container.find('.dialog').addClass('dialog-'+aOptions.id); this.container.attr('name', aOptions.id); this.container.css('z-index', aOptions.zindex); var me = this; //add class if (aOptions.popupclass && typeof aOptions.popupclass == 'string') { this.container.find('.popupwindowcontentinnerfunctional').addClass(aOptions.popupclass); } //set buttons var isButton = false; if (aOptions.yesText) { this.container.find('.popupyesbutton').html(aOptions.yesText).click(function() { me.yesPress(); }); this.onAccept = aOptions.onYes; isButton = true; } else { this.container.find('.popupyesbutton').remove(); } if (aOptions.noText) { this.container.find('.popupnobutton').html(aOptions.noText).click(function() { me.noPress(); }); this.onCancel = aOptions.onNo; isButton = true; } else { this.container.find('.popupnobutton').remove(); } if (aOptions.optText) { this.container.find('.popupoptbutton').html(aOptions.optText).click(function() { me.optPress(); }); this.onOptional = aOptions.onOpt; isButton = true; } else { this.container.find('.popupoptbutton').remove(); } if (!isButton) { this.container.find('.buttons').remove(); } if (aOptions.showClose) { //bing event to close button this.container.find('.closebutton').click(function() { me.noPress(); }); } else { this.container.find('.closebutton').remove(); } //append to page $('#popupwindow').after(this.container); //set content if (aOptions.title) { this.container.find('.title').html(aOptions.title); } else { this.container.find('.title').remove(); } if (aOptions.yesText === '') { this.container.find('.popcontent').html(aOptions.content); } else { this.container.find('.popcontent').html('<span class="solo">' + aOptions.content + '</span>'); } //set focus this.container.find('input:first').focus(); //align popup at windows center popupWindows.alignCenter(this.container, this.fixed); //show this.container.show(); }; //hidePopup this.close = function() { if (this.container === null) return; // hide and empty container this.container.remove(); this.container = null; //remove from storage popupWindows.closePopup(this.idPopup); }; //remove popup this.remove = function() { if (this.container === null) return; // hide and empty container this.container.remove(); this.container = null; }; this.yesPress = function() { //yes button pressed this.close(); if (typeof this.onAccept == 'function') { this.onAccept(); } }; this.noPress = function() { //no button pressed this.close(); if (typeof this.onCancel == 'function') { this.onCancel(); } }; this.optPress = function() { //optional button pressed this.close(); if (typeof this.onOptional == 'function') { this.onOptional(); } }; }; //popup windows container var popupWindows = { popupArray: {}, currentZIndex: 1111, keyPressBinded: false, defaultOptions: { id: 'commonpopup', popupclass: '', title: 'Bookstore', content: 'Popup content', yesText: '', noText: '', optText: '', onYes: null, onNo: null, onOpt: null, contentUrl: null, requestType: 'GET', data: {}, fixed: false, showClose: true }, //open popup window with specified params, latter you will be able to refer opened popup using specified ID //if popup with specified ID already exists - it will be closed and new one will be created, //onClose handler of forcibly closed popup will be executed openPopup: function(aOptions) { var resultOptions = jQuery.extend({}, this.defaultOptions, aOptions); resultOptions.zindex = this.currentZIndex; var aId = resultOptions.id; //close popup with specified ID if (typeof this.popupArray[aId] == 'object') { //close popup with same id this.popupArray[aId].close(); delete this.popupArray[aId]; } //shift opaqo $('#opacowindow').css('z-index', this.currentZIndex-1); $('#opacowindow').show().fadeTo("fast", 0.7); //load content from URL if contentUrl specified var me = this; if (resultOptions.contentUrl != null) { ajaxLoading.enable(); resultOptions.data['forPopup'] = true; nbsAjaxRequest(resultOptions.requestType, resultOptions.contentUrl, resultOptions.data, function(resp) { //check response format var tmpContent = resp; if (typeof resp == 'object') { tmpContent = JSON.stringify(resp); if (resp.error && resp.errorMessage) { tmpContent = resp.errorMessage; } else if (resp.success) { if (resp.html) { tmpContent = resp.html; } else if (resp.message) { tmpContent = resp.message; } } } resultOptions.content = tmpContent; me.createAndShowPopup(resultOptions); ajaxLoading.disable(); }, function(xhr) { if (xhr.status === 0) return; jQuery.blink(xhr.responseText, 3); me.closePopup(aId); ajaxLoading.disable(); } ); } else { this.createAndShowPopup(resultOptions); } }, createAndShowPopup: function(aOptions) { //create new popup var aId = aOptions.id; var tmpPopupWindow = new singlePopupWindow(); tmpPopupWindow.open(aOptions); this.currentZIndex = this.currentZIndex + 2; //add to array this.popupArray[aId] = tmpPopupWindow; //bind keypress handler if (!this.keyPressBinded) { $(document).bind("keyup", this.keyPress); this.keyPressBinded = true; } }, //close popup window by ID closePopup: function(aId) { if (typeof this.popupArray[aId] == 'object') { //close popup with same id this.popupArray[aId].remove(); delete this.popupArray[aId]; } var tmpCnt = 0; var tmpMaxZIndex = 0; for (var key in this.popupArray) { tmpCnt++; if (this.popupArray[key].zIndex > tmpMaxZIndex) { tmpMaxZIndex = this.popupArray[key].zIndex; } } //check opaqo if (tmpCnt == 0) { //hide opaqo $('#opacowindow').hide(); //unbind keypress handler $(document).unbind("keyup", this.keyPress); this.keyPressBinded = false; } else { //change z-index of opaqo $('#opacowindow').css('z-index', tmpMaxZIndex-1); } }, //close parent popup of specified element closeParentPopup: function(aSelector) { this.closePopup(this.getParentPopupId(aSelector)); }, //align target at center of window alignCenter: function(target, fixed) { var targetObj = $(target); var tmpHalfWidth = targetObj.innerWidth()/2; var tmpHalfHeight = targetObj.innerHeight()/2; var scrollTop = parseInt(jQuery(window).scrollTop()); //fix if needed if (!fixed) { var marginLeft = Math.max(0, parseInt(jQuery(window).width()/2 - jQuery(target).innerWidth()/2)); var marginTop = Math.max(0, parseInt(jQuery(window).height()/2 - jQuery(target).innerHeight()/2)); var scrollTop = parseInt(jQuery(window).scrollTop()); marginTop = marginTop + scrollTop; targetObj.css({"top":marginTop + "px", "left":marginLeft + "px"}); } else { targetObj.addClass('popup-fixed'); var tmpCss = {"margin-top": "-" + tmpHalfHeight + "px", "margin-left": "-" + tmpHalfWidth + "px"}; targetObj.css(tmpCss); } }, //move popup with specified id to position (upper left corner) move: function(aId, x, y) { if (typeof this.popupArray[aId] == 'object') { //move target to specified position (upper left corner) this.popupArray[aId].container.css({"top":y + "px", "left":x + "px"}); } }, //handle key press events keyPress: function(event) { if (event.which == 27) { //close top most popup //find it var tmpTopPopup = null; var tmpMaxZIndex = 0; for (var key in popupWindows.popupArray) { if (popupWindows.popupArray[key].zIndex > tmpMaxZIndex) { tmpTopPopup = popupWindows.popupArray[key]; tmpMaxZIndex = popupWindows.popupArray[key].zIndex; } } if (tmpTopPopup != null) { tmpTopPopup.noPress(); } } }, //get id of popup window of specified jquery element getParentPopupId: function(aElementSelector) { return $(aElementSelector).parents('.popupinnerfunctional').attr('name'); }, //show opaqo showOpaqo: function() { $('#opacowindow').css('z-index', this.currentZIndex-1); $('#opacowindow').show().fadeTo("fast", 0.7); } }; //]]></script> <div id="container"> <div id="pagetop"> <div class="contentW"> <div id="stylusLogo"> <a href="https://styluspub.presswarehouse.com/"><img src="/publishers/stylus/nrcfye/img/logo-stylusgrey.png" alt="" /></a> </div> <div id="publisherLogo"> <a class="publisherLogoImg" href="/"><img src="/publishers/stylus/nrcfye/img/header.png" /></a> </div> <div class="headerLinks"> <div class="searchForm"> <div id="searchForm"> <input type="text" name="Search" id="Search" value="" searchOption="{&quot;$or&quot;:[{&quot;$and&quot;:[{&quot;Title.TitleType&quot;:&quot;01&quot;},{&quot;Title.TitleText&quot;:{&quot;$regex&quot;:&quot;&quot;,&quot;$options&quot;:&quot;i&quot;}}]},{&quot;$and&quot;:[{&quot;ProductIdentifier.ProductIDType&quot;:&quot;15&quot;},{&quot;ProductIdentifier.IDValue&quot;:{&quot;$regex&quot;:&quot;&quot;,&quot;$options&quot;:&quot;i&quot;}}]},{&quot;Series.TitleOfSeries&quot;:{&quot;$regex&quot;:&quot;&quot;,&quot;$options&quot;:&quot;i&quot;}},{&quot;$or&quot;:[{&quot;Contributor.PersonName&quot;:{&quot;$regex&quot;:&quot;&quot;,&quot;$options&quot;:&quot;i&quot;}},{&quot;Contributor.PersonNameInverted&quot;:{&quot;$regex&quot;:&quot;&quot;,&quot;$options&quot;:&quot;i&quot;}},{&quot;Contributor.NamesBeforeKey&quot;:{&quot;$regex&quot;:&quot;&quot;,&quot;$options&quot;:&quot;i&quot;}},{&quot;Contributor.KeyNames&quot;:{&quot;$regex&quot;:&quot;&quot;,&quot;$options&quot;:&quot;i&quot;}}]},{&quot;$and&quot;:[{&quot;Subject.SubjectSchemeIdentifier&quot;:&quot;20&quot;},{&quot;Subject.SubjectHeadingText&quot;:{&quot;$regex&quot;:&quot;&quot;,&quot;$options&quot;:&quot;i&quot;}}]},{&quot;$and&quot;:[{&quot;Imprint.NameCodeValue&quot;:{&quot;$regex&quot;:&quot;&quot;,&quot;$options&quot;:&quot;i&quot;}}]},{&quot;$and&quot;:[{&quot;RelatedProduct.RelationCode&quot;:&quot;06&quot;},{&quot;RelatedProduct.ProductIdentifier.ProductIDType&quot;:&quot;15&quot;},{&quot;RelatedProduct.ProductIdentifier.IDValue&quot;:{&quot;$regex&quot;:&quot;&quot;,&quot;$options&quot;:&quot;i&quot;}}]}]}" type="search"> <a href="javascript:void(0)" id="js-searchButton" class="js-simpleSearch">Search</a> <script type="application/javascript"> //<![CDATA[ $(function(){ var resultsURL = "/browse/catalog"; $(".js-simpleSearch").on('click', function () { var searchOptionInArr = [$('#Search').attr('searchoption')]; window.location.href = resultsURL + setUrlVars("filter", searchOptionInArr[0]); }); $('#Search').keydown(function(event) { if (event.keyCode == 13) { $(this).blur(); $('.js-simpleSearch').trigger('click'); } }); $("#searchForm input").on('blur', function () { if ($(this).val() !== "") { var searchOption = JSON.parse($(this).attr('searchoption')); searchOption = setData(searchOption, $(this).val()); function setData(searchOption, val) { for(var key in searchOption) { if(Array.isArray(searchOption[key]) || typeof(searchOption[key]) == 'object') { searchOption[key] = setData(searchOption[key], val); } else { if(searchOption[key] == "") { searchOption[key] = val; } } } return searchOption; } $(this).attr('searchoption', JSON.stringify(searchOption)); } }); }); //]]> </script> </div> </div> <a href="https://styluspub.presswarehouse.com//myaccount/cart">Shopping Cart</a> </div> </div> </div> <div id="pagebody"> <div class="contentW"> <div id="largeblock"> <!-- Featured Titles --> <div id="featuredTitles"> <div class="listTitle"> <h2>Featured Titles</h2> <a href="/browse/catalog" class="seeAll">See All</a> <div class="clearfloats"></div> </div> <div class="listContent"> <div class="floating"> <div class="imgCnt"> <a href="/browse/book/9781942072775/Toward-Peer-Leadership-as-a-High-Impact-Practice"><img class="FeaturedImage" src="https://booksb2bportal.com/covers/31/9781942072775_S.jpg" /></a>&nbsp; </div> <div class="bookDetailsN"> <span class="publisherDarkColor"> <a href="/browse/book/9781942072775/Toward-Peer-Leadership-as-a-High-Impact-Practice">Toward Peer Leadership as a High-Impact Practice</a> <div class="bookAdditionalInfo"><i>Insights from the U.S. Data in the 2023 International Survey of Peer Leaders</i></div> <div class="bookAuthors"> Edited by <a href="/browse/author/d93ddbc4-268d-44b7-ad36-8d5330ce7af1/Bryce-D-Bunting">Bryce D. Bunting</a> and <a href="/browse/author/75e8c530-a151-46af-911f-3303b6ddb647/Dallin-George-Young">Dallin George Young</a> </div> <div class="bookMedDesc" data-productid="9781942072775" data-title="Toward Peer Leadership as a High-Impact Practice"> <p><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html><body><p>Higher education professionals engage peer leaders in a variety of settings, from academic advising to residence life and from orientation to the senior year experience. Although the structure and administration of peer leader programs varies depending on the unique needs and features of a particular college or university, there is a commonality across peer leaders and their experiences. In short, peer leadership has a triple-impact in that it benefits student recipients, the institution, and the peer leaders themselves.<br><br><i>Toward Peer Leadership as a High Impact Practice: Insights from the U.S. Data in the 2023 International Survey of Peer Leaders</i> contributes to the academic scholarship on peer leadership through the recent collection of over 1,500 student responses on their experiences as peer leaders. This report looks at peer leadership as a high-impact practice, examines the equity and access to participation in peer leadership, and explores key questions for practitioners looking to implement, refine, or assess their peer leadership programs, as well as for researchers with an interest in drawing findings of this survey for their work.</p></body></html></p> </div> <br> </span> </div> <div class="clearfloats"></div> </div> <div class="floating"> <div class="imgCnt"> <a href="/browse/book/9781942072744/Examining-the-Landscape-of-Transfer-Support"><img class="FeaturedImage" src="https://booksb2bportal.com/covers/31/9781942072744_S.jpg" /></a>&nbsp; </div> <div class="bookDetailsN"> <span class="publisherDarkColor"> <a href="/browse/book/9781942072744/Examining-the-Landscape-of-Transfer-Support">Examining the Landscape of Transfer Support</a> <div class="bookAdditionalInfo"><i>Results from the 2021 National Study of Transfer Student Initiatives</i></div> <div class="bookAuthors"> <a href="/browse/author/da490092-4306-40d8-a6fb-75a19f18f21d/Catherine-Hartman">Catherine Hartman</a> and <a href="/browse/author/aa5a6aca-7152-4cff-ac50-4433eda9538e/Jeffrey-Mayo">Jeffrey Mayo</a> </div> <div class="bookMedDesc" data-productid="9781942072744" data-title="Examining the Landscape of Transfer Support"> <p><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html><body><p>Transfer students are an important yet often understudied and underserved population within postsecondary education. Millions of students rely on the transfer function of community colleges and two-year schools to earn bachelor&rsquo;s degrees. Yet, low student transfer and bachelor&rsquo;s degree completion rates indicate a leaky transfer pipeline. Given the growing interest and increase in transfer and transfer-intending students across the postsecondary landscape and the longstanding degree completion challenges these students often face, institutional leaders and staff must understand how they can best support transfer students and bolster their persistence. For this reason, the National Resource Center for The First-Year Experience and Students in Transition created the inaugural National Study of Transfer Student Initiatives.<br><br>This report details the results from the 2021 National Study of Transfer Student Initiatives and is intended to provide leaders, researchers, and policymakers with a national overview of transfer-related policies, practices, and procedures as well as institutional and bureaucratic barriers to their development, coordination, and implementation. In addition, it prompts discussions for leaders and staff as they consider how transfer-related efforts may be improved to better meet the needs of students.</p></body></html></p> </div> <br> </span> </div> <div class="clearfloats"></div> </div> <div class="floating"> <div class="imgCnt"> <a href="/browse/book/9781942072690/Rethinking-Student-Transitions"><img class="FeaturedImage" src="https://booksb2bportal.com/covers/31/9781942072690_S.jpg" /></a>&nbsp; </div> <div class="bookDetailsN"> <span class="publisherDarkColor"> <a href="/browse/book/9781942072690/Rethinking-Student-Transitions">Rethinking Student Transitions</a> <div class="bookAdditionalInfo"><i>How Community, Participation, and Becoming Can Help Higher Education Deliver on its Promise</i></div> <div class="bookAuthors"> <a href="/browse/author/75e8c530-a151-46af-911f-3303b6ddb647/Dallin-George-Young">Dallin George Young</a> and <a href="/browse/author/d93ddbc4-268d-44b7-ad36-8d5330ce7af1/Bryce-D-Bunting">Bryce D. Bunting</a> </div> <div class="bookMedDesc" data-productid="9781942072690" data-title="Rethinking Student Transitions"> <p><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html><body><i>Rethinking Student Transitions: How Community, Participation, and Becoming Can Help Higher Education Deliver on its Promise, </i>presents a reimagined theory of student transitions in college. The authors contend that while previous theorizations have helped move the practice of supporting student success forward through the latter half of the twentieth century, earlier conceptualizations and models have led to an inconsistent and incomplete picture of students&rsquo; experiences in transition. The book offers both a review and critique of current models of transition and then develops a new conceptual viewpoint based in the ideas of situated learning and transitions as becoming. The second half of the book is dedicated to using this new theoretical perspective to illustrate how higher education professionals can create conditions to support students in transition more intentionally, with a particular view toward supporting historically marginalized students, including racially and ethnically minoritized students, first-generation students, and post-traditional students.</body></html></p> </div> <br> </span> </div> <div class="clearfloats"></div> </div> <div class="floating"> <div class="imgCnt"> <a href="/browse/book/9781942072720/Transitions-2023-2024"><img class="FeaturedImage" src="https://booksb2bportal.com/covers/31/9781942072720_S.jpg" /></a>&nbsp; </div> <div class="bookDetailsN"> <span class="publisherDarkColor"> <a href="/browse/book/9781942072720/Transitions-2023-2024">Transitions 2023-2024</a> <div class="bookAuthors"> Edited by <a href="/browse/author/c5596d7b-75f0-44e5-b3f7-254acea4fc5b/Daniel-B-Friedman">Daniel B. Friedman</a>, <a href="/browse/author/3f80fc90-aad3-4c77-8964-3ba8fdfa08ba/Katie-Hopkins">Katie Hopkins</a> and <a href="/browse/author/bc976669-52b2-49a7-9048-d3a67072f795/Kristy-Sokol">Kristy Sokol</a> </div> <div class="bookMedDesc" data-productid="9781942072720" data-title="Transitions 2023-2024"> <p><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html><body><p>A publication of University 101 Programs, University of South Carolina,&nbsp;<i>Transitions</i> is the customized textbook for students in the University of South Carolina's University 101 first-year seminar. It includes both general and institution-specific information for first-year students.<br><br> Topics include time management, academic success strategies, career development, information literacy, health and wellness, and values and identity. An ideal model for institutions working to design a custom-published, first-year seminar text.</p></body></html></p> </div> <br> </span> </div> <div class="clearfloats"></div> </div> <div class="floating"> <div class="imgCnt"> <a href="/browse/book/9781942072669/Ensuring-Success-for-Students-Who-Transfer"><img class="FeaturedImage" src="https://booksb2bportal.com/covers/31/9781942072669_S.jpg" /></a>&nbsp; </div> <div class="bookDetailsN"> <span class="publisherDarkColor"> <a href="/browse/book/9781942072669/Ensuring-Success-for-Students-Who-Transfer">Ensuring Success for Students Who Transfer</a> <div class="bookAdditionalInfo"><i>The Importance of Career and Professional Development</i></div> <div class="bookAuthors"> Edited by <a href="/browse/author/f2fa2136-a4b2-493e-8614-1d32a36db892/Heather-N-Maietta-44-Ed-D">Heather N. Maietta&#44; Ed.D.</a> and <a href="/browse/author/752daf6a-7773-4471-bcd3-55358302934f/Philip-D-Gardner-44-Ph-D">Philip D. Gardner&#44; Ph.D.</a> </div> <div class="bookMedDesc" data-productid="9781942072669" data-title="Ensuring Success for Students Who Transfer"> <p><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html><body><p>Transfer students face a unique set of challenges when trying to get acclimated to their new environment. In the current transfer literature, there is an absence of career development in all its forms including career resources, career advising, career coaching/counseling, professional readiness, and job search strategizing. <i>Ensuring Success for Students Who Transfer: The Importance of Career and Professional Development</i> works to fill this void. <br><br> This publication presents anecdotal and data-driven evidence of career development and professional readiness being infused at various universities to offset the imperceptible career voice in current transfer literature.</p></body></html></p> </div> <br> </span> </div> <div class="clearfloats"></div> </div> <div class="floating"> <div class="imgCnt"> <a href="/browse/book/9781942072737/University-101-Faculty-Resource-Manual-2024"><img class="FeaturedImage" src="https://booksb2bportal.com/covers/31/9781942072737_S.jpg" /></a>&nbsp; </div> <div class="bookDetailsN"> <span class="publisherDarkColor"> <a href="/browse/book/9781942072737/University-101-Faculty-Resource-Manual-2024">University 101 Faculty Resource Manual, 2024</a> <div class="bookAuthors"> Edited by <a href="/browse/author/c5596d7b-75f0-44e5-b3f7-254acea4fc5b/Daniel-B-Friedman">Daniel B. Friedman</a>, <a href="/browse/author/3f80fc90-aad3-4c77-8964-3ba8fdfa08ba/Katie-Hopkins">Katie Hopkins</a> and <a href="/browse/author/07c5e40c-7340-48b4-aa6b-0e7472e0eeaf/Callyn-Fahey">Callyn Fahey</a> </div> <div class="bookMedDesc" data-productid="9781942072737" data-title="University 101 Faculty Resource Manual, 2024"> <p><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html><body><p>A publication of University 101 Programs, University of South Carolina. The <i>University 101 Faculty Resource Manual, 2024</i> is the 15th edition of the publication and builds off previous versions. This edition has been updated to reflect best practices for teaching a first-year seminar. The first nine chapters constitute the &ldquo;textbook&rdquo; for U101 instructors and were written by University 101 Programs Staff.<br><br> Each of the 10 learning outcome chapters were developed by committees with diverse representation from across campus based on their expertise, review of literature and best practices, and approaches that have worked well in past years. The manual is updated each year based on assessment data indicating which approaches work best for achieving course outcomes.<br><br> To order the PDF - please send an email request to stylusinfo@styluspub.com which includes your full name, billing address, and phone number. We will call you to obtain your payment information, after which we will email you the PDF.</p></body></html></p> </div> <br> </span> </div> <div class="clearfloats"></div> </div> <div class="floating"> <div class="imgCnt"> <a href="/browse/book/9781942072652/The-First-Year-Seminar"><img class="FeaturedImage" src="https://booksb2bportal.com/covers/31/9781942072652_S.png" /></a>&nbsp; </div> <div class="bookDetailsN"> <span class="publisherDarkColor"> <a href="/browse/book/9781942072652/The-First-Year-Seminar">The First-Year Seminar</a> <div class="bookAdditionalInfo"><i>Designing, Implementing, and Assessing Courses to Support Student Learning and Success</i></div> <div class="bookAuthors"> Edited by <a href="/browse/author/0dcfa03a-289d-445b-92e2-13e2b7018883/Jennifer-R-Keup">Jennifer R. Keup</a>, <a href="/browse/author/1ee67e0d-d9d4-4752-b7aa-570ff056f275/Joni-Webb-Petschauer">Joni Webb Petschauer</a>, <a href="/browse/author/a9342c45-6865-4fe8-908e-8cfa94fcea88/James-E-Groccia">James E. Groccia</a>, <a href="/browse/author/39dbd594-1c53-48d3-a618-39ec1f7b7958/Mary-Stuart-Hunter">Mary Stuart Hunter</a>, <a href="/browse/author/c9ac949a-6a82-49c3-b5d4-366ec28bfe1e/Brad-Garner">Brad Garner</a>, <a href="/browse/author/610f015f-9ecb-4054-aaa3-bac5aa44ad65/Jennifer-A-Latino">Jennifer A. Latino</a>, <a href="/browse/author/4949de01-65b2-40c2-9db5-8af78eceb7a3/Michelle-L-Ashcraft">Michelle L. Ashcraft</a> and <a href="/browse/author/c5596d7b-75f0-44e5-b3f7-254acea4fc5b/Daniel-B-Friedman">Daniel B. Friedman</a> </div> <div class="bookMedDesc" data-productid="9781942072652" data-title="The First-Year Seminar"> <p><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html><body><i>The First-Year Seminar: Designing, Implementing, and Assessing Courses to Support Student Learning and Success</i>, a five-volume series, is designed to assist educators who are interested in launching a first-year seminar or revamping an existing program. Each volume examines a different aspect of first-year seminar design or administration and offers suggestions for practice grounded in research on the seminar, the literature on teaching and learning, and campus-based examples. Because national survey research suggests that the seminar exists in a variety of forms on college campuses -- and that some campuses combine one or more of these forms to create a hybrid seminar -- the series offers a framework for decision making rather than a blueprint for course design.<br><br><b>The series includes:</b><br> Volume I: Designing and Administering the Course<br> Volume II: Instructor Training and Development<br> Volume III: Teaching in the First-Year Seminar<br> Volume IV: Using Peers in the Classroom<br> Volume V: Assessing the First-Year Seminar<br><br><b>Editors/Authors:</b><br> Volume I: Jennifer R. Keup &amp; Joni Webb Petschauer<br> Volume II: James E. Groccia &amp; Mary Stuart Hunter<br> Volume III: Brad Garner<br> Volume IV: Jennifer A. Latino &amp; Michelle L. Ashcraft<br> Volume V: Daniel B. Friedman</body></html></p> </div> <br> </span> </div> <div class="clearfloats"></div> </div> <div class="floating"> <div class="imgCnt"> <a href="/browse/book/9781942072621/A-Faculty-and-Staff-Guide-on-Supporting-Sophomore-Student-Success"><img class="FeaturedImage" src="https://booksb2bportal.com/covers/31/9781942072621_S.jpg" /></a>&nbsp; </div> <div class="bookDetailsN"> <span class="publisherDarkColor"> <a href="/browse/book/9781942072621/A-Faculty-and-Staff-Guide-on-Supporting-Sophomore-Student-Success">A Faculty and Staff Guide on Supporting Sophomore Student Success</a> <div class="bookAuthors"> <a href="/browse/author/968b841e-e934-4527-991a-f614db6debae/Julie-Tetley">Julie Tetley</a> and <a href="/browse/author/8993baa9-ffd8-4771-ae45-c10511541f46/Molly-Schaller">Molly Schaller</a> </div> <div class="bookMedDesc" data-productid="9781942072621" data-title="A Faculty and Staff Guide on Supporting Sophomore Student Success"> <p><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html><body><i>A Faculty and Staff Guide on Supporting Sophomore Student Success</i> is part of a series of action-oriented guides intended to blend research and practice to enhance the professional development and capacity of faculty and staff toward the ultimate goal of increasing the learning, development, transition, and success of students during their time in college or university. More specifically, this guide uses Schaller&rsquo;s (2005) psychosocial developmental model, beginning with random exploration and concluding at commitment, as a framework and organizing structure to help advisors to interpret the experiences of students and then link those experiences to related learning outcomes.<br><br> Throughout this guide, readers will find questions for reflection, specific strategies for advisors, and practical tools to use when working with students at the various developmental stages. These resources align with the developmental experiences for students at each psychosocial stage.</body></html></p> </div> <br> </span> </div> <div class="clearfloats"></div> </div> <div class="clearfloats"></div> <span class="page pageActive">1</span> <span class="page toggleBooks">2</span> <span class="toggleBooks moreTitles">More Book Titles...</span> <div class="clearfloats"></div> </div> </div> <div class="topicsAndSeriesList"><!-- Subjects List --> <div class="catsPills"> <h3>Browse by Category</h3> <hr /> </div> <ul class="pLists"> <ul class="pLists"> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Academic+%26+Career+Advising%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Academic+%26+Career+Advising%22%7D%7D%7D%5D%7D"> Academic & Career Advising </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Assessment+%26+Accreditation%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Assessment+%26+Accreditation%22%7D%7D%7D%5D%7D"> Assessment & Accreditation </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Career+Counseling%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Career+Counseling%22%7D%7D%7D%5D%7D"> Career Counseling </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Community+Colleges%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Community+Colleges%22%7D%7D%7D%5D%7D"> Community Colleges </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Curriculum%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Curriculum%22%7D%7D%7D%5D%7D"> Curriculum </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Faculty+Development%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Faculty+Development%22%7D%7D%7D%5D%7D"> Faculty Development </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Gender+%26+Higher+Education%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Gender+%26+Higher+Education%22%7D%7D%7D%5D%7D"> Gender & Higher Education </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22General+Interest%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22General+Interest%22%7D%7D%7D%5D%7D"> General Interest </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Graduate+%26+Doctoral+Education%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Graduate+%26+Doctoral+Education%22%7D%7D%7D%5D%7D"> Graduate & Doctoral Education </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22High-Impact+Educational+Practices%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22High-Impact+Educational+Practices%22%7D%7D%7D%5D%7D"> High-Impact Educational Practices </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Instructional+Design%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Instructional+Design%22%7D%7D%7D%5D%7D"> Instructional Design </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22International+%26+Comparative+Education%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22International+%26+Comparative+Education%22%7D%7D%7D%5D%7D"> International & Comparative Education </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Leadership+%26+Administration%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Leadership+%26+Administration%22%7D%7D%7D%5D%7D"> Leadership & Administration </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Policy+%26+Research%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Policy+%26+Research%22%7D%7D%7D%5D%7D"> Policy & Research </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Professional+Development%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Professional+Development%22%7D%7D%7D%5D%7D"> Professional Development </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Research+Skills%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Research+Skills%22%7D%7D%7D%5D%7D"> Research Skills </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Student+Affairs+%26+Campus+Issues%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Student+Affairs+%26+Campus+Issues%22%7D%7D%7D%5D%7D"> Student Affairs & Campus Issues </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Student+Leadership%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Student+Leadership%22%7D%7D%7D%5D%7D"> Student Leadership </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Student+Success%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Student+Success%22%7D%7D%7D%5D%7D"> Student Success </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Student+Transition+Experiences%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Student+Transition+Experiences%22%7D%7D%7D%5D%7D"> Student Transition Experiences </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Students+in+Transition%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Students+in+Transition%22%7D%7D%7D%5D%7D"> Students in Transition </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Teacher+Education%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Teacher+Education%22%7D%7D%7D%5D%7D"> Teacher Education </a> </li> <li> <a href="/browse/catalog?filter=%7B%22%24or%22%3A%5B%7B%22Subject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Teaching+%26+Learning%22%7D%7D%7D%2C%7B%22MainSubject%22%3A%7B%22%24elemMatch%22%3A%7B%22value.SubjectSchemeIdentifier.value%22%3A%2224%22%2C%22value.SubjectSchemeName.value%22%3A%22BOOKSTORE_TOPIC%22%2C%22value.SubjectCode.value%22%3A%22Higher+Education%22%2C%22value.SubjectHeadingText.value%22%3A%22Teaching+%26+Learning%22%7D%7D%7D%5D%7D"> Teaching & Learning </a> </li> </ul> </ul> </div> </div> <script> $(function(){ var ellipsis = "..."; function Truncate(text, maxLength, productid, title) { if (text.length <= maxLength) return text; var moreLink = ' <a class="moreInfo" href="browse/book/' + productid + '/' + title + '">more&nbsp;info</a>'; maxLength -= ellipsis.length; var space = text.lastIndexOf(" ", maxLength); if (space >= 0) maxLength = space; return text.slice(0, maxLength) + ellipsis + moreLink; } $(".bookMedDesc").each(function () { var productid = $(this).data('productid'); var title = $(this).data('title'); $(this).html(Truncate($(this).text(), 100, productid, title)); }); $(".listContent .floating:lt(4)").addClass("first"); $(".listContent .floating:gt(3)").addClass("second"); $(document).on('click', ".toggleBooks", ( function(e) { e.preventDefault(); $(".first, .second").toggle(0, function() { return false; }); var curPage = $(".pageActive"); $(".page").addClass("pageActive").removeClass("toggleBooks"); curPage.removeClass("pageActive").addClass("toggleBooks"); }) ); }); </script> </div> </div> <div id="pagebottom"> <div id="footer"> <div class="contentW"> <div class="footerMenu"> <h3>Contact Stylus</h3> <div class="columnEr contactStylus"> <h4>General Inquiries:</h4> 22883 Quicksilver Drive, Sterling, VA 20166-2012<br> Tel: (703) <b>661-1504</b>, <b>996-1036</b><br> Fax: (703) <b>661-1547</b><br> E-mail: <a href="mailto:StylusInfo@StylusPub.com"><b>StylusInfo@StylusPub.com</b></a> </div> <div class="columnEr contactStylus"> <h4>Orders & Customer Service:</h4> PO Box 605, Herndon, VA 20172-0605<br> Tel: (800) <b>775-2518</b>, (703) <b>661-1504</b><br> Fax: (703) <b>661-1501</b><br> E-mail: <a href="mailto:StylusMail@PressWarehouse.com"><b>StylusMail@PressWarehouse.com</b></a> </div> </div> <div class="clearfloats"><hr /></div> <div class="footerOfFooter"> <div class="footerLinks"> <a href="https://styluspub.presswarehouse.com/">Stylus Distribution Website</a> / <a href="https://styluspub.presswarehouse.com//myaccount/cart">Shopping Cart</a> </div> </div> <div class="clearfloats"></div> </div> </div> </div> </div> <script type='text/javascript'> //<![CDATA[ $(function () { // More links for Book List $('.bookList .bookMedDesc').each(function(i, obj) { if ( $(this).children().length ) { // Debug // console.log($(this).outerHeight(true) + " and " + children.outerHeight(true)); if( $(this).outerHeight(true) < $(this).children().outerHeight(true) ){ $(this).addClass("bookMedDescMore"); } } }); }); //]]></script> <script type="text/javascript" src="/js/plugins.js?v=f3fbd47d"></script> <script type="text/javascript" src="/js/main.js?v=1609254e"></script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10