The HUB Print and Postal Services exists to support the objectives of Rochester Institute of Technology. The HUB is dedicated to providing high quality printing and mailing services to its customers. We deliver these services at competitive prices by specific deadlines. We enhance the institutional image through quality work while employing a customer-oriented management style that strives for excellence.
Make An Order Online
$("#readMoreBtn").click(function () {
if ( $("#readMore").is(":hidden")) {
$("#readMore").slideDown( "slow" );
} else {
$("#readMore"). slideUp();
}
});
$(".homeSprite").click(function () {
console.log('Sprite Click');
if($(this).siblings("div.BToolTip-tl").is(":hidden")) {
console.log('Hide/Show');
$(this).siblings("div.BToolTip-tl").slideDown("slow");
} else {
console.log('Else');
$(this).siblings("div.BToolTip-tl"). slideUp();
}
});