Louise Sheehan

By

02
Nov

2023 MAD Awards

The 2023 MAD Awards Evening was a vibrant celebration of creativity and talent!  The gallery was abuzz with excitement as families gathered to admire the incredible artworks crafted by our brilliant student artists throughout the year. From stunning paintings to mesmerizing sculptures, the gallery was a testament to the remarkable artistic journey of our young...
Read More
13
Sep

ACC Athletics Carnival

The 2023 ACC Athletics Carnival was a whirlwind of excitement and intense competition as Emmanuel took on the C-Division. After six weeks of training and preparation, the team was primed for the day and started with a bang. Emmanuel was vying for top spot from the get-go and the lead changed hands numerous times throughout...
Read More
05
Sep

Sweet Inspiration From a Favourite Book

Year 11 Food Science and Technology students were issued a challenge to choose a favourite book and make a cake to represent the book. This Bake-off Assessment task incorporated their knowledge of baking techniques alongside their imagination and creativity. The creations were displayed at the College during Book Week, as part of the English Creative...
Read More
01
Sep

English Creative Conference

The inaugural English Creative Conference was a wonderful evening that served as a celebration of Book Week and the remarkable achievements of English students across the College. The event was a true testament to the dedication and passion that these students have poured into their work. Upon entering the venue, attendees were greeted by a...
Read More
28
Aug

Year 10 Retreat & Wellbeing

Year 10 students attended a Wellbeing walk and an inspiration session led by Scott Darlow as part of their Retreat Day experiences. A Yoorta Yoorta man, who is a professional musician and public speaker, Scott incorporated music and stories in his presentation to drive home a message of culture, reconciliation and personal growth. His main...
Read More
1 2 3 4 5 6
<h5>Year Entry Calculator</h5> 
<form> 
    <label for="birthMonth">Birth Month:</label> 
    <select id="birthMonth" name="birthMonth"> 
        <option value="0">January</option> 
        <option value="1">February</option> 
        <option value="3">March</option> 
        <option value="4">April</option> 
        <option value="5">May</option> 
        <option value="6">June</option> 
        <option value="7">July</option> 
        <option value="8">August</option> 
        <option value="9">September</option> 
        <option value="10">October</option> 
        <option value="11">November</option> 
        <option value="12">December</option> 
    </select><br><br> 
    <label for="birthYear">Birth Year:</label> 
    <select id="birthYear" name="birthYear"> 
        <option value="2010">2010</option> 
        <option value="2011">2011</option> 
        <option value="2012">2012</option> 
        <option value="2013">2013</option> 
        <option value="2014">2014</option> 
        <option value="2015">2015</option> 
        <option value="2016">2016</option> 
        <option value="2017">2017</option> 
        <option value="2018">2018</option> 
        <option value="2019">2019</option> 
        <option value="2020">2020</option> 
        <option value="2021">2021</option> 
        <option value="2022">2022</option> 
        <option value="2023">2023</option> 
        <option value="2024">2024</option> 
        <option value="2025">2025</option> 
    </select><br><br> 
    <input type="button" value="Calculate" onclick="calculateYear()"><br><br> 
    <p>Year 7: <span id="year7Entry"></span></p> 
    <p>Year 8: <span id="year8Entry"></span></p> 
    <p>Year 9: <span id="year9Entry"></span></p> 
    <p>Year 10: <span id="year10Entry"></span></p> 
    <p>Year 11: <span id="year11Entry"></span></p> 
    <p>Year 12: <span id="year12Entry"></span></p> 
</form>
<script> 
    function calculateYear() { 
        // Get the birth month and year from the form 
        var birthMonth = parseInt(document.getElementById("birthMonth").value); 
        var birthYear = parseInt(document.getElementById("birthYear").value); 

        // Calculate the year the student will enter Year 7 
        var year7Entry = birthYear + 12; 
        if (birthMonth > 6) { 
            year7Entry++; 
        } 
        // Calculate the year entry from Year 7 
        var year8Entry = year7Entry +1; 
        var year9Entry = year7Entry +2; 
        var year10Entry = year7Entry +3; 
        var year11Entry = year7Entry +4; 
        var year12Entry = year7Entry +5; 

        // Set the calculated year in the form 
        document.getElementById("year7Entry").innerHTML = year7Entry; 
        document.getElementById("year8Entry").innerHTML = year8Entry; 
        document.getElementById("year9Entry").innerHTML = year9Entry; 
        document.getElementById("year10Entry").innerHTML = year10Entry; 
        document.getElementById("year11Entry").innerHTML = year11Entry; 
        document.getElementById("year12Entry").innerHTML = year12Entry; 
    } 
</script>