$(document).ready( function() {
	$('#lang').bind('click',function() { $('#lang-switcher').toggle(); });
	$('#lang-switcher .lang_item').bind('click',function() {
		var landID;
		src=$(this).css("backgroundImage");
		mas=new Array();
		mas=src.split("(");
		t1=new Array();
		t1=mas[1].split(")");
		s=t1[0];
		$('#lang-switcher').hide();
		$('#lang').attr('src', s);
		langID = $(this).attr('id');
		langID = langID.substr(4,4);
		// now langID keeps value - the counting nubber of possible languages
		// use it to switch the language
	});
	$('#lang').bind('clickoutside', function(event){
		$('#lang-switcher').hide();
	});
});

