$(document).ready(function() {
	
	/* open links with rel="external" in new window and amend link title */
	$('a[rel*="external"]').each(function() {
		var title = $(this).attr('title') ? $(this).attr('title') + ' (opens in a new tab or window)' : 'This link will open in a new tab or window';
		$(this).attr('title',title).click(function() {
			window.open($(this).attr('href'));
			return false;
		});
	});
	
	
	$('body.home #header').each(function() {
		insert_flash("/_assets/flash/home.swf", "header", "981px", "392px", "6.0.65","#fff","transparent","");
	});
	
	$('#flash_menu_overlay').each(function() {
		insert_flash("/_assets/flash/nav.swf", "flash_menu_overlay", "390px", "43px", "6.0.65","#fff","transparent","");
	});
	
});

