﻿/* Modal behaviours */

// Detect modal links and open in a colorbox modal
$(function() {
    $('a[href*="modals/"]').colorbox({ iframe: true, width: '800px', height: '500px' });
});

$(document).ready(function() {
	// Any link with a rel of print will launch the browser print dialougue
    $('a[rel^="Print"]').click(function(){
		window.print(); 
		return false;
	});
});
