﻿// share.js
// --------
/// <reference path="jquery-1.3.2-vsdoc.js" />
$(document).ready(function() {
    $('#socialSites').click(function() {
        $(this).next().toggle(300);
        return false;
    });
});