﻿$(function() {

//    $("a.grouped-elements").fancybox();

    $('.boxedText').each(function(index) {
        if ($(this).find('a').length != 0) {
            $(this).addClass('pointer');
        }
    });

    $('.boxedText').click(function() {
        if ($(this).find('a').length != 0) {
            window.location = $(this).find('a:first').attr('href');
        }
    });
    
});
