/* Minification failed. Returning unminified contents.
(1,1): run-time error CSS1019: Unexpected token, found '$'
(1,2): run-time error CSS1019: Unexpected token, found '('
(1,12): run-time error CSS1031: Expected selector, found '('
(1,12): run-time error CSS1025: Expected comma or open brace, found '('
(14,2): run-time error CSS1019: Unexpected token, found ')'
(18,1): run-time error CSS1019: Unexpected token, found '$'
(18,2): run-time error CSS1019: Unexpected token, found '('
(18,12): run-time error CSS1031: Expected selector, found '('
(18,12): run-time error CSS1025: Expected comma or open brace, found '('
(26,2): run-time error CSS1019: Unexpected token, found ')'
 */
$(function () {
    $('[data-popup-open]').on('click', function (e) {
        var targeted_popup_class = jQuery(this).attr('data-popup-open');
        $('[data-popup="' + targeted_popup_class + '"]').fadeIn(350);

        e.preventDefault();
    });
    $('[data-popup-close]').on('click', function (e) {
        var targeted_popup_class = jQuery(this).attr('data-popup-close');
        $('[data-popup="' + targeted_popup_class + '"]').fadeOut(350);

        e.preventDefault();
    });
});



$(function () {
    $('.share .fb').click(function (e) {
        window.open('https://www.facebook.com/sharer.php?u=' + encodeURIComponent(window.location.href),
            'שיתוף', 'width=635,height=436,status=no,toolbar=no,menubar=no,location=no');
    });
    $('.share .email').click(function (e) {
        window.location = 'mailto:' + '?subject=' + "יורם דרושים" + '&body=' + "יורם דרושים בונים לך קריירה. אנחנו כאן כדי למצוא את העבודה שהכי מתאימה לך";
    });
});
