Banner subtitle text

This page will give you a view of what is happening throughout  Orientation. Once you're ready head to the registration page, to confirm your attendance at your course Orientation. 

This program will be conducted in Australian Eastern Daylight Time (AEDT). 

Name Time Campus More Info
Monday, February 20, 2023
Bachelor of Paramedicine Orientation 9:00 AM - 1:00 PMRozelle
Tuesday, February 21, 2023
Bachelor of Paramedicine Orientation9:00 AM - 1:00 PMMedical Sciences Precinct
Thursday, February 23, 2023
Bachelor of Pharmacy Orientation4:00 PM - 6:00 PMWest Park
Bachelor of Pharmacy Orientation4:00 PM - 6:00 PMNewnham
Bachelor of Pharmacy Orientation4:00 PM - 6:00 PMSandy Bay
// JavaScript file with functions for generating and animating the confetti // Variables to control the confetti animation const confettiContainer = document.getElementById("confetti-container"); const numConfetti = 50; const fallSpeed = 0.5; // Function to generate the confetti pieces function generateConfetti() { for (let i = 0; i < numConfetti; i++) { const confetti = document.createElement("div"); confetti.classList.add("confetti"); confetti.style.top = `${Math.random() * 100}%`; confetti.style.left = `${Math.random() * 100}%`; confetti.style.width = `${Math.random() * 15 + 5}px`; confetti.style.height = confetti.style.width; confetti.style.backgroundColor = `rgb(${Math.random() * 255}, ${Math.random() * 255}, ${Math.random() * 255})`; confetti.style.transform = `rotate(${Math.random() * 360}deg)`; confettiContainer.appendChild(confetti); } } // Function to animate the confetti pieces function animateConfetti() { const confetti = document.querySelectorAll(".confetti"); confetti.forEach(piece => { let top = parseInt(piece.