// unity*dc website general Javascript routines

$(document).ready(function() {
	
	/** Button link styling **/
	$(document).ready(function() {
		$('a.button').append('<span class="link_arrow_button">&gt;</span>');
	});


	/** Automatically make all external links open in new window/tab **/
	$(document).ready(function() {
		$("a").filter(function() {
		    return this.hostname && this.hostname !== location.hostname;
		}).attr('target', '_blank');
	});
	
	
	
});
