/*

    localhost Ltd - Miscellaneous scripts
    
    File name: misc.js (Version: 2.0)
    Description: This file contains simple scripts for controlling miscellaneous options.
    
    Coded by George Delaportas (G0D)
    
    localhost Ltd
    Copyright (c) 2011

*/



// Fixate languages positions on Greek language
function Fix_Greek_Lang_Pos()
{

    if (global_lang == 'gr')
    {
    
        document.getElementById('languages').style.marginRight = '20px';
        document.getElementById('lang_gr_pix').style.marginLeft = '9px';
        document.getElementById('lang_en_pix').style.marginLeft = '3px';
        
        return 1;
    
    }
    
    return 0;

}



/* ---------- End ---------- */

