sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() { this.className+=" sfhover";	}
		sfEls[i].onmouseout=function() { this.className=this.className.replace(new RegExp(" sfhover\\b"), "");}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

$(document).ready( function(){
	$('ul#language-list').css("display","none");
    $('ul#language-list').each(function() {
		var $select = $('<select id="language-select-list" onchange="document.location.href=this.options[this.selectedIndex].value;" />');	
        $(this).find('a').each(function() {
            var $option = $('<option />');
            $option.attr('value', $(this).attr('href')).html($(this).html());
			if ($(this).hasClass('selected'))  $option.attr("selected", "selected");
			$select.append($option);
        });
		$select.append('<option value=""></option>');
		$select.append('<optgroup label="Distributors :">');
		$select.append('<option value="http://www.cefaly.ca">Canada</option>');
		$select.append('<option value="http://www.cefaly.cl">Chile</option>');		
		$select.append('<option value="http://www.cefaly.ir">ايران</option>');
		$select.append('<option value="http://www.cefaly.lt">Lietuva</option>');
		$select.append('<option value="http://www.cefaly.hu">Magyarország</option>');
		$select.append('<option value="http://www.cefaly.nl">Nederland</option>');
		$select.append('<option value="http://www.cefaly.ps">فلسطين</option>');
		$select.append('<option value="http://www.cefaly.rs">Srbija</option>');
		$select.append('<option value="http://www.cefaly.si">Slovenija</option>');
		//$select.append('<option value="http://www.cefaly.com.tr">Türkçe</option>' );
		$select.append('</optgroup>');
		$select.append('<option value="">&nbsp;</option>');

		var $form = $('<form action="" method="post" />');
		$form.append($select);
       $("#language-select-form").append('<img src="http://www.cefaly.com/images/ic-globe.png" alt="globe" width="19" height="19" style="float:left" />');
	   $("#language-select-form").append($form);
    });
});
