﻿$(document).ready(function()
{
    $('a.priceLink').click(function()
    {
        if($(this).next().is(':visible'))
            $(this).next().hide('slow');
        else
            $(this).next().show('slow');
    });

    $('#gallery a').lightBox();
});


