﻿$(document).ready(function () {
    $("#featured > ul").tabs({
        fx: { opacity: "toggle" },
        event: "mouseover"
    }).tabs("rotate", 5000, true);


    $('#featured ul li a').click(function () {

        window.location.href = $(this).attr('link');
    });
});
