Symphony.bundlesReady(function(){ 

//adds logo into footer
$('.footer-menu li.col-md-6:nth-of-type(3) > ul > li:nth-of-type(1)').replaceWith('<img src="//s3.amazonaws.com/sneakpeeq-sites/neffheadwear/images/mobile-footer-logo2.png"/>');
$('.footer-menu li.span6:nth-of-type(3) > ul > li:nth-of-type(1)').replaceWith('<img src="//s3.amazonaws.com/sneakpeeq-sites/neffheadwear/images/mobile-footer-logo2.png"/>');

//adds social to footer-bottom
$('.col-md-6.footer-social.row').appendTo('ul.row.footer-menu.list-unstyled');
$('.span6.footer-social.row-fluid').appendTo('footer .footer-bottom .footer-menu');
$('.footer-top .col-md-6.row').appendTo('ul.row.footer-menu.list-unstyled');
$('.footer-top .span6.row-fluid').appendTo('footer .footer-bottom .footer-menu');
$('footer .footer-subscribe .input-append .btn').text('JOIN');


//change copyright text
$("footer .footer-bottom .bottom .col-md-12, footer .footer-bottom .bottom .span12").text("Neff is an active youth headwear &   apparel brand supported by some of the globe's best athletes, musicians, &          personalities.");

//adds mobile logo to header
$('<a class="mobile-nav-logo" href="/"><img src="//d20b8ckvu6gb0w.cloudfront.net/neffheadwear/images/logo.png"></a>').insertAfter('a.btn-navbar');
$('<a class="mobile-nav-logo" href="/"><img src="//d20b8ckvu6gb0w.cloudfront.net/neffheadwear/images/logo.png"></a>').insertAfter('.navbar-toggle');


//adds search to promo banner
  $('.header-primary-content .site-search-container').appendTo('.promo-banner');

//adds account to promo banner
$('#stickyHeader > sp-search-expander > div.sticky-nav > ul').appendTo('.myaccount');
$('#kiwiHeader > sp-search-expander > div.sticky-nav > ul').appendTo('.myaccount');

//adds cart to promo bar
$('.header-section .affix-top .header-cart').appendTo('.myaccount');
//swaps logo for svg
// $('.sticky-logo a img').attr('src','//d20b8ckvu6gb0w.cloudfront.net/neffheadwear/images/new-log.png');

  
$('.product-comments').insertBefore($('.product-morelikethis'));
$('.product-comments h2.comments').text('REVIEWS');
$('.details-tabs .tab-content').insertAfter('.product-morelikethis');
$('.sizeChart').prependTo('.product-content .product-info-wrapper .product-main .details .tab-content');

setTimeout(function(){
  if ($('body > article:nth-child(6) > div.product-main-container > div.container.ng-scope > div.row.product-content > div.span5.product-info > div > div.title-bar.clearfix > div > h1').text().toLowerCase().indexOf('beanie') > -1) {
    $('.sizeChart').hide();
  }
}, 2000);

});