Kids T-shirts, children's clothing and baby clothes plus family gifts

Kids T-shirts, children's clothing and baby clothes plus family gifts like mugs, sweatshirts, tote bags, hoodies, magnets,
pillows, children's stories CDs, kids birthday T-shirts, baby creepers, toddler t-shirts, and more matching family clothing

Kids T-shirts, children's clothing, baby clothes, and family gifts from Baby Bird Productions
You're now in the kids T-shirts, family clothing and gifts section of our kids T-shirts, children's clothing, baby clothes,
matching family clothing and gifts shops, with cute designs for your entire family, BABIES, CHILDREN AND ADULTS, on
T-shirts, mugs, magnets, pillows, sweatshirts, baby creepers, tote bags, jerseys, bibs, children's stories and more.
• FOR BRAND NAME DISCOUNT CHILDREN'S CLOTHING, please click hereVIEW YOUR SHOPPING CART or CHECKOUT
 

Kids T-Shirts, children's clothing and family gifts from Baby Bird Productions > HOLIDAY T-SHIRTS & GIFTS > EASTER T-SHIRTS & GIFTS > Easter Long Sleeve Dark T-Shirt

If you want to get a closer look, click the "View Larger" image link below.

Easter Long Sleeve Dark T-Shirt
View Larger
Color:
// this initial block stores the images in a global var called swatchUrls so// that we will have them as we do rolloversvar queryString;var SelectedDefaultSwatchImgId;var SelectedDefaultSwatchColorName;var thumbnailPerspective = "default";var swatchUrls = new Array();var originalImageUrls = new Array();swatchUrls['imageColor_6'] = new Array(); //for default, front and backswatchUrls['imageColor_6'][0] = new Image;swatchUrls['imageColor_6'][0].src = 'http://images2.cafepress.com/product/219942042v4_350x350_Front_Color-Black.jpg';swatchUrls['imageColor_6'][1] = new Image;swatchUrls['imageColor_6'][1].src = 'http://images2.cafepress.com/product/219942042v4_350x350_Front_Color-Black.jpg';var lastIndex = (swatchUrls['imageColor_6']).length;swatchUrls['imageColor_6'][lastIndex] = new Image;swatchUrls['imageColor_6'][lastIndex].src = 'http://content.cafepress.com/products/additional_photos/155_c6_1.jpg';setDefaultSwatch( 'imageColor_26','Navy');swatchUrls['imageColor_26'] = new Array(); //for default, front and backswatchUrls['imageColor_26'][0] = new Image;swatchUrls['imageColor_26'][0].src = 'http://images2.cafepress.com/product/219942042v4_350x350_Front_Color-Navy.jpg';swatchUrls['imageColor_26'][1] = new Image;swatchUrls['imageColor_26'][1].src = 'http://images2.cafepress.com/product/219942042v4_350x350_Front_Color-Navy.jpg';var lastIndex = (swatchUrls['imageColor_26']).length;swatchUrls['imageColor_26'][lastIndex] = new Image;swatchUrls['imageColor_26'][lastIndex].src = 'http://content.cafepress.com/products/additional_photos/155_c26_1.jpg';function setDefaultSwatch(colorId,colorName){SelectedDefaultSwatchImgId = colorId;SelectedDefaultSwatchColorName = colorName;}/**** refreshImages - replaces the image link with a** new random number so that the image is not cached**/function refreshImages(){var regexp = /\?r=*/;var randNum = "?r=" + (new Date()).getTime();for(var j in swatchUrls) {for(var i in swatchUrls[j]) {var myUrl = swatchUrls[j][i].src;if (myUrl.match(regexp)) {swatchUrls[j][i].src = myUrl.replace(regexp, randNum);} else {swatchUrls[j][i].src = myUrl + randNum;}}}//refresh originalsfor(var k in originalImageUrls) {var myUrl = originalImageUrls[k];if (myUrl.match(regexp)) {originalImageUrls[k] = myUrl.replace(regexp, randNum);} else {originalImageUrls[k] = myUrl + randNum;}}}//convenience methodfunction convertImageArrayToUrlArray(newImageArray) {//get source and put into arrayvar urlArray = new Array(newImageArray.length);for(i=0; i < newImageArray.length; i++) {if (newImageArray[i] != null && newImageArray[i] != undefined) {urlArray[i] = newImageArray[i].src;}}//fix for if you clicked backreturn urlArray;}/**** doSwatchClick - action performed when swatch is clicked, which could be:** 1. change default color text if in edit page, also change view larger link to send in the new color** 2. change default color chosen in drop down if a drop down exists** 3. swap main image + 2 small front/back images with the chosen color** 4. refreshes size drop down if upon choosing this color, there are sizes that are out of stock** 5. if in edit page, draws a border around the clicked swatch**/function doSwatchClick(newImageArray, dropDownId, newSelectValue, sizeDropDownId, imgIdToHighlight, colorText) {//get source and put into arrayvar urlArray = convertImageArrayToUrlArray(newImageArray);setDefaultSwatch(imgIdToHighlight, colorText);if (imgIdToHighlight != undefined && imgIdToHighlight != '') {toggleImgBorder(imgIdToHighlight,1,1);}if (changeDefaultColor != undefined) {changeDefaultColor(colorText);}swapImgsWithUrls(['mainimg', 'img1', 'imgproductinfo1'], urlArray);changeDropDownValueSelected(dropDownId, newSelectValue);if (sizeDropDownId != '') {if (refreshSizeDropDown != undefined) {refreshSizeDropDown(sizeDropDownId, dropDownId);}}//overwrite originalImageUrls - call save again since your new values have changedsaveOriginalImageUrls();//refresh availability message, if it existsif (refreshAvailabilityMessage != undefined) {refreshAvailabilityMessage();}}/**** saveOriginalImageUrls() -- saves the pre rollover images in a global** var named originalImageUrls so that we can retrieve them 'onmouseout'**/function saveOriginalImageUrls() {if (document.images['mainimg'] != undefined) {originalImageUrls[0] = document.images['mainimg'].src}var lastIndex = 2;if (document.images['img1'] != undefined) {originalImageUrls[1] = document.images['img1'].src}if (document.images['imgproductinfo1'] != undefined){originalImageUrls[lastIndex] = document.images['imgproductinfo1'].src}}/**** restoreOriginalImageUrls() -- onmouseout, we restore whatever the original** images were pre-rollover**/function restoreOriginalImageUrls() {swapImgsWithUrls(['mainimg', 'img1', 'imgproductinfo1'], originalImageUrls);}/**** changeImgBorder -- changes image border to a new value**/function changeImgBorder(id, border,colorno) {myImg = document.getElementById(id);if (myImg != undefined) {myImg.style.border=border;}}/**** toggleImgBorder**/function toggleImgBorder(idToHighlight,SelectedAsDefault,MouseOver) {var divId = 'imageColor_6';if (divId == idToHighlight && MouseOver==1) {if(SelectedAsDefault){changeImgBorder(divId, "1px solid black",6);}else{if(divId != SelectedDefaultSwatchImgId)changeImgBorder(divId, "1px solid gray",6);changeDefaultColor('Black');}} else {if (SelectedDefaultSwatchImgId != undefined && SelectedDefaultSwatchImgId != ''){if (!MouseOver){changeDefaultColor(SelectedDefaultSwatchColorName);}if(divId != SelectedDefaultSwatchImgId){//original borderchangeImgBorder(divId, "0px solid",6);}}}var divId = 'imageColor_26';if (divId == idToHighlight && MouseOver==1) {if(SelectedAsDefault){changeImgBorder(divId, "1px solid black",26);}else{if(divId != SelectedDefaultSwatchImgId)changeImgBorder(divId, "1px solid gray",26);changeDefaultColor('Navy');}} else {if (SelectedDefaultSwatchImgId != undefined && SelectedDefaultSwatchImgId != ''){if (!MouseOver){changeDefaultColor(SelectedDefaultSwatchColorName);}if(divId != SelectedDefaultSwatchImgId){//original borderchangeImgBorder(divId, "0px solid",26);}}}}//end if in edit page
Black
Navy
Easter Long Sleeve Dark T-Shirt
$34.99
Size:  Size Chart

Color:
Qty:
  
AVAILABILITY:

Need it by Dec. 24? See order deadlines

Product Number: 219942042

EASTER T-SHIRTS & GIFTS have Easter bunnies, chicks, eggs, baskets, and Easter hearts. In addition to t-shirts and other clothes, we have Easter tote bags and mugs.

Product Information
Standard Fit
Not too tight, not too loose.
Fabric Thickness:
Our Long Sleeve T-Shirt adds an extra element of style for a casual night out, or to keep the chill off. Made of 100% ringspun cotton for maximum comfort, put on your new favorite T-Shirt from a favorite, trusted name in t-shirts, Hanes.
  • 6.1 oz. 100% luxuriously soft ring spun cotton
  • Standard fit
  • Ribbed sleeve cuffs

powered by CafePress & cpshop

 
Kids T-shirts, children's clothing, baby clothes, family clothing and gifts from Baby Bird ProductionsDiscount children's clothing, baby clothes and kids brand name fashions
 

KIDS T-SHIRTS AND FAMILY GIFTS
We have kids T-shirts, sweatshirts,
and more, matching family clothing,
and family gifts with cute designs

BABY BIRD
PRODUCTIONS
DISCOUNT CHILDREN'S CLOTHING
We have discount kids and baby
clothes, with big discounts on
kids brand name fashions
 
Visit our KIDS T-SHIRTS, FAMILY CLOTHING AND GIFTS SHOP sections:

  

Have any questions?
Want to order by phone?
Call 1-877-809-1659
Where's My Stuff?
  • Track your recent orders.
  • View your orders.
  • Shipping & Returns
  • See our shipping rates.
  • Make a return or exchange.
  • Need Help?
  • Satisfaction Guaranteed.
  • Visit our Customer Service.
  •  

    To contact us directly at Baby Bird Productions about our artwork or
    product customization, please click here: mail@babybirdproductions.com.

    © Family apparel, fun gifts and story CDs from Baby Bird Productions ®. Copyright: Barbara Freedman-De Vito 2003 - 2009. This site is protected by copyright internationally. All rights reserved.