$(document).ready(function() {
    $("#drop-menu").previewMenu();
    $('body').pngFix();
});
  
$(document).ready(function() {
    $(".price-drop-down").click( function(ev) {
        context = $( this );
        ev.preventDefault();
        cont = $( this ).parents("div")[0];
        priceBlock = $("#" + $( this ).attr("id") + "-price", cont);
        priceBlock.slideToggle("fast", function() { 
            if (priceBlock.is(":visible")) { 
                $(".switch", context).text("↑");
            }
            else {
                $(".switch", context).text("↓");
            }
        });
    });
});

