﻿// Default.js

var imagePath = '/Portals/_default/Skins/Aydus/';

function swapImageOn(id1, id2)
{
    document.getElementById('ButtonService' + id1).src = imagePath + 'ButtonService' + id1 + '_on.png';
    document.getElementById('imgService').src = imagePath + 'Service' + id1 + '.png';
}

function swapImageOff(id1)
{
    document.getElementById('ButtonService' + id1).src = imagePath + 'ButtonService' + id1 + '.png';
    document.getElementById('imgService').src = imagePath + 'Service01.png';

}

function goHome()
{
    window.location = 'http://www.aydus.com';
}