﻿//document.write('<script src="App_Scripts/jquery.js" type="text/javascript"></script>');

$(document).ready(function(){
    var sPath = window.location.pathname;
    //var sPage = sPath.substring(sPath.lastIndexOf('\\') + 1);
    var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
    sPage = sPage.substring(0,sPage.lastIndexOf('.'));
    
    switch(sPage)
    {
    case "Tickets":
        SetBackground("yellow");
        $("#BackgroundHeadline").html("Køb klippekort");
        break;
    case "Resume":
        SetBackground("yellow");
        $("#BackgroundHeadline").html("Profil");
        break;
    case "Status":
        SetBackground("yellow");
        $("#BackgroundHeadline").html("Faktura status");
        break;
    case "Purchases":
        SetBackground("yellow");
        $("#BackgroundHeadline").html("Klippekort");
        break;
    }
    
});

function SetBackground(colorClass)
{
    //alert("SetBackground("+colorClass+")");
    //$("div.default").removeAttr("class");
    $("div.default").attr("class", colorClass);
}