﻿$(function () {
    $('a.modal-view').fancybox({ 'titlePosition': 'over' });
    $('.hoverable').hover(
        function () {
            $(this).addClass('hover');
        },
        function () {
            $(this).removeClass('hover');
        }
    );

    $('.mail-to').each(function () {
        var mail = $(this).attr('href').replace('#', '');
        $(this).attr('href', 'mailto:' + mail + '@' + 'apromotion.cz');
    });
});
