﻿$(document).ready(function() {
    // Internal linking
    $(".anchorInternal").click(function() {
    $(this).find("a").addClass('thickbox');
        window.location = $(this).find("a").attr("href"); return false;
    });
    $('.anchorInternal').hover(function() {
        $(this).addClass('hover');
    }, function() {
        $(this).removeClass('hover');
    });
    // External linking
    $(".anchorExternal").click(function() {
        strUrl = $(this).find("a").attr("href");
        window.open(strUrl); return false;
    });
    $('.anchorExternal').hover(function() {
        $(this).addClass('hover');
    }, function() {
        $(this).removeClass('hover');
    });
});
