﻿displayPhoto("prostar011.jpg");

function displayPhoto(imageURL)
{
    var imgPhoto = document.getElementById("imgPhoto");
    imgPhoto.setAttribute("src", imageURL);
    
    var pDescription = document.getElementById("pDescription");
    
    switch(imageURL) {
        case "prostar011.jpg" :
            pDescription.innerHTML = "The Pro Star logo is at center ice at the Ulin rink at Curry College";
            break;
        case "prostar014.jpg" :
            pDescription.innerHTML = "Coach Dunbar with top 1990 goalie TJ Massie of Cushing Academy";
            break;
        case "prostar009.jpg" :
            pDescription.innerHTML = "Left to right,top 1989 defensemen Nick Jaskowiak and Nick Petrecki with coach Dunbar";
            break;
        case "prostar006.jpg" :
            pDescription.innerHTML = "Winners of the 1989 skills competition. Anthony Borelli (center) repeats as top goaltender";
            break;
        case "prostar012.jpg" :
            pDescription.innerHTML = "Jordan Morrison - Peterboro Petes (OHL), Adam Pineault-Moncton (QMJL), Coach Dunbar and Matt Lashoff-Kitchener Rangers (OHL)";
            break;
        case "Dale2players.png" :
            pDescription.innerHTML = "1990 top prospects Brian Lashoff and Matt Fallon with Coach Dunbar";
            break;
        case "discussion.jpg" :
            pDescription.innerHTML = "Derek Sanderson and Bobby Orr respond to questions at a Pro Star seminar";
            break;
        case "prostar013.jpg" :
            pDescription.innerHTML = "Gord Kluzak delivering a powerful message on the importance of an education";
            break;
        case "prostar010.jpg" :
            pDescription.innerHTML = "1990 Syracuse Stars on a team building trip aboard a yacht in Boston Harbor";
            break;
        case "prostar008.jpg" :
            pDescription.innerHTML = "Pro Star and Syracuse players pose on the dock after a Boston Harbor cruise";
            break;
        case "prostar007.jpg" :
            pDescription.innerHTML = "Left to Right: Myles Applebaum Kitchner Rangers (OHL), Jack Skille US Under-18 Team and Christian Hanson Tri-Cities (USHL) and Notre Dame enjoy an afternoon barbeque";
            break;
        case "hockey2.png" :
            pDescription.innerHTML = "Coach Dunbar poses with '79 Tom Kostopoulos after winning the Lac Saint Louis Tournament in Montreal";
            break;
        case "34-teamphoto.jpg" :
            pDescription.innerHTML = "Pro Stars and US National Team members pose for a Christmas picture for coach Dunbar. Left to Right: Ron Hainsey, Fred Meyer, JD Forrest, John Sabo, Ricky Di Pietro, and Andy Hilbert";
            break;
        case "players.jpg" :
            pDescription.innerHTML = "1980 Mississaugua Reps Manny Malhotra (Columbus Blue Jackets), Alan Rourke (Carolina Hurricanes), and Joe Durzo (Alabama Huntsville) with Coach Dunbar";
            break;
        case "prostar005.jpg" :
            pDescription.innerHTML = "1994 Pro Star Camp in Boston. Top row- 3rd from left is Brian Mc Connell (Captain,Boston University) and Pittsburgh Penguins 1st round pick Ryan Whitney is in the top row 2nd from right";
            break;
        case "team81.jpg" :
            pDescription = "What Pro Star team had the best single season record? The crew above had an impressive 50 wins and only 1 loss";
            break;
        default:
            pDescription.innerHTML = "";
    }
    
}