jQuery(document).ready(function() {
    jQuery('.category-title + img').css('margin-top','-41px')

    //hide price on related products block
    jQuery('#block-related .regular-price').hide();

    //hide price on products grid
    jQuery('.products-grid .regular-price').hide();

    //hide price on products list
    jQuery('.products-list .regular-price').hide();

    //hide pager navigation on search
    jQuery('.results-view .toolbar:first').hide();

    //hide pager navigation
    jQuery('.category-view .toolbar:first').hide();

    if (jQuery("#twitter").length>0) {
        jQuery.getScript('/misc/jquery.twitter/jquery.twitter.js', function() {
            jQuery("#twitter").getTwitter({
                    userName: "environmentfurn",
                    numTweets: 2,
                    loaderText: "Loading tweets...",
                    slideIn: true,
                    showHeading: false,
                    headingText: "",
                    showProfileLink: false
            });
        });
    }

    if (location.href.indexOf('/collection/category/heather-heron')) {
        $('.heather-heron').css('font-weight','bold');
    } else if (location.href.indexOf('/collection/category/epack')) {
        $('.epack').css('font-weight','bold');
    } else if (location.href.indexOf('/collection/category/store')) {
        $('.store').css('font-weight','bold');
    } else if (location.href.indexOf('/collection/')) {
        $('.featured').css('font-weight','bold');
    }


 
     });


