﻿/// <reference path="jquery-1.4.1-vsdoc.js />
// DOM is accessible - Do jQuery stuff
$(document).ready(function () {
    $('.BasicMenu li').live('click', function () {
        window.location = $('a', this).attr('href');
    });
});
