﻿$(document).ready(function () {

    var imageToggle = $('#ImageToggle');
    var imageTag = $('div.image img:first');
    var socialNetworksTag = $('#CN');

    imageTag.click(function () {
        toggleWidth('170px', '320px');
    });

    imageToggle.click(function () {
        imageTag.click();
    });

    function toggleWidth(Small, Large) {
        if (imageTag.css('width') == Large) {
            imageTag.animate({ width: Small });
            imageToggle.text('Expand Image');
        } else {
            imageTag.animate({ width: Large });
            imageToggle.text('Shrink Image');
        };
    }

});


$(document).ready(function() {
    $(".LearnMoreAboutMarketplaceInListingsControl").colorbox({ inline: true, href: "#popup", opacity: 0.6, close: "" });
    $("a#close").click(function() {
        $.fn.colorbox.close();
    });
});
