$(document).ready(function(){
    $('#meniu_swf').flash(
        { 
          src: 'swf/meniu.swf',
          width: 880,
          height: 140,
		  wmode: 'transparent'
        },
        { version: 8 },
		function (htmlOptions)
		{
			var $this = $(this);
			var lang = $this.attr('lang');
			htmlOptions.flashvars = {lang:lang};
			$this.addClass('flash-replaced').prepend($.fn.flash.transform(htmlOptions));
		}
    );
});


$(document).ready(function(){
    $('#logo_swf').flash(
        { 
          src: 'swf/logo.swf',
          width: 880,
          height: 74,
		  wmode: 'transparent'
        },
        { version: 8 }
    );
});
$(document).ready(function(){
    $('#frank_swf').flash(
        { 
          src: 'swf/frank.swf',
          width: 130,
          height: 130,
		  wmode: 'transparent'
        },
        { version: 8 }
    );
});


function switch_show(id){
  // alert (id);
   var box = document.getElementById(id);
   if (box.style.display=='block'){
	   box.style.display='none';
   } else{
	   box.style.display='block';
   }
   return false;
}

function show_close (id1, id2){
	// alert (id);
   var box = document.getElementById(id1);
   box.style.display='block';
	var box = document.getElementById(id2);
   box.style.display='none';
   return false;
}