$("document").ready (function ()
{
    // $('div#navigation div.language select').change(function()
	$('select#form_language').change(function()
    {
        if($(this).val() != '')
        {
            var regexp = /\/([a-z]{2}){0,1}\//i;
            location.href = '/' + $(this).val() + (location.pathname.replace(regexp, '/'));
        }
    }
    );
    // $('div#navigation div.language select').change(function()
	$('select#form_language').change(function()
    {
        if($(this).val() != '')
        {
            var regexp = /\/([a-z]{2}){0,1}\//i;
            location.href = '/' + $(this).val() + (location.pathname.replace(regexp, '/'));
        }
    }
    );
});    
function showTransfer ()
{
  var imag = document.createElement ('img');
  imag.id = 'progressBar';
  imag.style.position = 'absolute';
  imag.style.left = '0px';
  imag.style.top = '0px';
  imag.src="/images/frontend/main/ajax_load.gif";
  $("body").append (imag);
}

function hideTransfer ()
{
  $("body")[0].removeChild ($("#progressBar")[0]);
}    
