﻿$(document).ready(function() {
    eom.rollover.init();

    $('button[href]').each(function() {
        $(this).bind('click', function(e) {
            e.preventDefault();
            var href = $(this).attr('href');
            window.location.href = href;
        });
    });
});
