﻿$.noConflict();
jQuery.fn.exists = function(){return jQuery(this).length>0;}
jQuery(document).ready(function ($) {
    $("#bigBannerHome").click(function () {
        window.location.href = "curso-manipuladores-alimentos.aspx";
    });

    $("a.moduleLink").attr("rel", "external");

    $("a[rel='external']").attr("target", "_blank");
});

