﻿$(document).ready(function () {
    $(".menuItem").click(function () {
        var url = $(this).attr("url");
        if (url) window.location.href = url;
    });

    $(".followList").hide();

    $(".follow").click(function () {
        $('.followList').slideToggle('fast');
    });

    $("a[rel=fancyvideo]").fancybox({
        overlayShow: true,
        frameWidth: 640,
        frameHeight: 505
    });

});
