﻿
// Main Manu Scripts
function ToSecondHandOver(Obj) {
    var element = $(Obj);
    element.css({ 'background-color': '#74a5ba' });
   
}
function ToSecondHandOut(Obj) {
    var element = $(Obj);
    element.css({ 'background-color': 'transparent' });
    }


// Main Manu Scripts
function ToOver(Obj)
{
    var element = $(Obj);
    if(!element.hasClass("selectedAhref"))
    {
        element.css({'background-color' : '#cccccc'});
        element.children().css({'color':'#454345'});
    }
}
function ToOut(Obj)
{
    var element = $(Obj);
    if(!element.hasClass("selectedAhref"))
    {
        element.css({'background-color' : 'transparent'});
        element.children().css({'color':'#c9ccc9'});
    }
        
}
//Main Page 

function ServerTransferTo(url)
{
    location.href = url;
}

function SetThisShowedImage(imgSrc) {

    document.getElementById("showedImg").setAttribute("src", imgSrc);

}


