﻿function getQueryString()
{
    // Parse current url into an array with the keys/values
    var q = String (document.location).split ('?')[1];
    if (!q) return false;
    q = q. split ('&amp;');

    // For each key/value, split at the '=' and add to the querystring array
    var querystring = new Array;
    for (var i = 0 ; i < q.length; i++)
    {
        var o = q[i].split('=');
        querystring[o[0]] = o[1];
    }
    return querystring;
}

// Select Google iframe code depending on calendar requested
var calendarHTML, calendarHeader;
var calID = getQueryString()["calID"];
switch (calID)
{
    case "0":
        calendarHTML = '<iframe src="http://www.google.com/calendar/embed?showTitle=0&amp;height=700&amp;wkst=1&amp;bgcolor=%23FFFFFF&amp;src=mdelange%40jhvolleyball.org&amp;color=%23BE6D00&amp;src=g15o9qh6g2292turqhc5l4sh9o%40group.calendar.google.com&amp;color=%234E5D6C&amp;src=a571bud8vn384egru5911h4feg%40group.calendar.google.com&amp;color=%23B1440E&amp;src=qsi9l62qr52k92t531nghaofco%40group.calendar.google.com&amp;color=%232952A3&amp;src=3npnqq2gr6bkmj6vdvl8s08ac4%40group.calendar.google.com&amp;color=%235A6986&amp;ctz=America%2FDenver" style=" border-width:0 " width="732" height="700" frameborder="0" scrolling="no"></iframe>';
        calendarHeader = 'All Calendars';
        break;
    case "1":
        calendarHTML = '<iframe src="http://www.google.com/calendar/embed?showTitle=0&amp;showCalendars=0&amp;height=700&amp;wkst=1&amp;bgcolor=%23FFFFFF&amp;src=mdelange%40jhvolleyball.org&amp;color=%23BE6D00&amp;ctz=America%2FDenver" style=" border-width:0 " width="732" height="700" frameborder="0" scrolling="no"></iframe>'
        calendarHeader = 'JH Volleyball Calendar';
        break;
    case "2":
        calendarHTML = '<iframe src="http://www.google.com/calendar/embed?showTitle=0&amp;showCalendars=0&amp;height=600&amp;wkst=1&amp;bgcolor=%23FFFFFF&amp;src=a571bud8vn384egru5911h4feg%40group.calendar.google.com&amp;color=%23B1440E&amp;ctz=America%2FDenver" style=" border-width:0 " width="732" height="600" frameborder="0" scrolling="no"></iframe>'
        calendarHeader = 'JH High School Calendar';
        break;
    case "3":
        calendarHTML = '<iframe src="http://www.google.com/calendar/embed?showTitle=0&amp;showCalendars=0&amp;height=600&amp;wkst=1&amp;bgcolor=%23FFFFFF&amp;src=qsi9l62qr52k92t531nghaofco%40group.calendar.google.com&amp;color=%232952A3&amp;ctz=America%2FDenver" style=" border-width:0 " width="732" height="600" frameborder="0" scrolling="no"></iframe>'
        calendarHeader = 'JH Middle School Calendar';
        break;
    case "4":
        calendarHTML = '<iframe src="http://www.google.com/calendar/embed?showTitle=0&amp;showCalendars=0&amp;height=600&amp;wkst=1&amp;bgcolor=%23FFFFFF&amp;src=g15o9qh6g2292turqhc5l4sh9o%40group.calendar.google.com&amp;color=%234E5D6C&amp;ctz=America%2FDenver" style=" border-width:0 " width="732" height="600" frameborder="0" scrolling="no"></iframe>'
        calendarHeader = 'Camp Calendar';
        break;
    case "5":
        calendarHTML = '<iframe src="http://www.google.com/calendar/embed?showTitle=0&amp;showCalendars=0&amp;height=600&amp;wkst=1&amp;bgcolor=%23FFFFFF&amp;src=3npnqq2gr6bkmj6vdvl8s08ac4%40group.calendar.google.com&amp;color=%235A6986&amp;ctz=America%2FDenver" style=" border-width:0 " width="732" height="600" frameborder="0" scrolling="no"></iframe>'
        calendarHeader = 'Other Events';
        break;
    default:
        calendarHTML = '<iframe src="http://www.google.com/calendar/embed?showTitle=0&amp;height=600&amp;wkst=1&amp;bgcolor=%23FFFFFF&amp;src=mdelange%40jhvolleyball.org&amp;color=%23BE6D00&amp;src=g15o9qh6g2292turqhc5l4sh9o%40group.calendar.google.com&amp;color=%234E5D6C&amp;src=a571bud8vn384egru5911h4feg%40group.calendar.google.com&amp;color=%23B1440E&amp;src=qsi9l62qr52k92t531nghaofco%40group.calendar.google.com&amp;color=%232952A3&amp;src=3npnqq2gr6bkmj6vdvl8s08ac4%40group.calendar.google.com&amp;color=%235A6986&amp;ctz=America%2FDenver" style=" border-width:0 " width="732" height="600" frameborder="0" scrolling="no"></iframe>'
        calendarHeader = 'All Calendars';
}
$('calendar').set('html', calendarHTML);
$('calendarHeader').set('html', calendarHeader);



