// JavaScript Document
$(document).ready(function(){
	// calculate height for tab expand
	$('.tabDisp').each(function(){
		myid = 'li[name=' + $(this).attr('name') + ']';
		var myh = 10;
		$(myid).each(function(i,e){ myh = ($(e).height() > myh) ? $(e).height() : myh;	});
		$(this).height(myh);
	});

	$('#menu > ul').tabexpand({ selected: null }); // start with all tabs hidden
	$('#menu > ul').tabexpand({ unselect: true, fx: { height: 'toggle' }}); // selected tab closes on click

	$('.lang[langcode]').each(function() {
//		$(this).bind('click',function(event){ window.location.href = "home.php?slangid="+ $(this).attr('langid');});
//		$(this).bind('click',function(event){ window.location.href = $(this).attr('urlcall') + '?slangid='+ $(this).attr('langid');});
		$(this).bind('click',function(event){ window.location.href = $(this).attr('urlcall') + '?slangcode='+ $(this).attr('langcode');});
	});
});
