
$(document).ready(function () {

    // Shop the article - remove >6 watches
    $('#shop-article-container td:gt(6)').hide();


    // Portfolio page
    $('.portfolio-ul>div:nth-child(4n)').each(function () {
        $(this).css('border-right', 'none');
    });

});// end ready


// Show/Hide
$(function() {
    $('.btn_display').parent().css('position','relative');
    $('.btn_display').click(function() {
        $(this).parent().children('div').stop(false, true).slideToggle('slow');
        if ($(this).hasClass('show') == true) { $(this).addClass('hide').removeClass('show'); } else { $(this).addClass('show').removeClass('hide'); };
    })
});


// About us - face/info
$(function () {
    $('.cms-about-us .face img').click(function () {
        $(this).parent().parent('div').animate({ "top": "-=345px" }, "slow");
    })
});

$(function () {
    $('.cms-about-us .info').click(function () {
        $(this).parent('div').animate({ "top": "+=345px" }, "slow");
    })
});





