// This is necessary because IE6 won't register a click on the inner <a> tag
// after IE7.js makes the div background png transparent.

$(document).ready(function() {
    $('div.dynamicroundtab').css('cursor', 'pointer');
    $('div.dynamicroundtab').click(roundtabClick);
});

function roundtabClick(e) {
    e.preventDefault();
    var url = $(this).find('a').attr('href');
    window.location = url;
}

