﻿$(function() {
    $('div#contact').click(function() {
        document.location = '/contact.aspx';
    });
    
    if($(".blokNews").length > 0) {
        $(".blokNews").click(function () {
            document.location = $(this).find(".newsLink").attr("href");
        });
    }
});

