$(document).ready(function()
{

    $('#menu a').each(function()
    {
        if($(this).attr('href') == window.location.pathname)
        {                 
            $(this).parent().addClass('current');
        }
    }); 
         
    if(jQuery.browser.msie == false || jQuery.browser.version > 6)
    {                                         
        $('#buttons a').corners('4px');    
          
        $('.contact').corners('4px');       
    }
    
});

function changeLanguage(sCurrentLanguageCode)
{
    var language_code = document.getElementById('LAN_Code').value;

    if(language_code != '')
    {     
        var sLocation = window.location.href;
        
        var aLocation = sLocation.split('/');    
        
        if(aLocation[3] == '')
        {
            sLocation += language_code + '/';
        }
        else
        {
            sLocation = sLocation.replace('/' + aLocation[3] + '/', '/' + language_code + '/');
        }
        
        window.location.href = sLocation;                
    }
}



