﻿/* Behaviours when inside a modal window */

// Detect non-modal links and open in the parent window
$(document).ready(function() {
    $('a:not([href*="modals/"])').click(function() {
        parent.location.href = $(this).attr('href');
        return false;
    });
});