﻿if (location.href.indexOf("www.") == -1) {
    window.location="http://www." + location.href.substring(7, location.href.length);
}


$(document).ready(function()
{
    // stuff
});




// function to fix ie8 start playing flash problem
function getFlashMovie(movieName)
{
    var isIE = navigator.appName.indexOf("Microsoft") != -1;
    return (isIE) ? window[movieName] : document[movieName];
}
function startPowerOfChoiceFlashRC()
{
    // start the power of choice flash
    getFlashMovie("Avanade_Online_Services_RC").sendTextToFlash("start");
}
function stopPowerOfChoiceFlashRC()
{
    // stop the power of choice flash
    getFlashMovie("Avanade_Online_Services_RC").sendTextToFlash("stop");  
}
function startPowerOfChoiceFlashMC()
{
    // start the power of choice flash
    getFlashMovie("Avanade_Online_Services_MC").sendTextToFlash("start");
}
function stopPowerOfChoiceFlashMC()
{
    // stop the power of choice flash
    getFlashMovie("Avanade_Online_Services_MC").sendTextToFlash("stop");  
}
