// Navigation
//$('#navi_main').bind("mouseover", function() { naviOver(); });
//$('#navi_main').bind("mouseout", function() { naviOut(); });
//$('.navi_layer_1 > li').bind("mouseover", function() { naviToggle(this); });
//$('#navi_sub_div').bind("mouseover", function() { naviOver(); });
//$('#navi_sub_div').bind("mouseout", function() { naviOut(); });
//$(document).ready(function() { naviInit(document.getElementById('navi_main')); });




// Mediabox
function initMediaBoxes(){

  var base = 'http://www.hypoxi.net/themes/hypoxi/';
  // FF hack (see http://www.mail-archive.com/jquery-en@googlegroups.com/msg16064.html)
  $("#ImageBoxOverlay").remove();
  $("#ImageBoxOuterContainer").remove();

  jQuery.ImageBox.init({
			loaderSRC		: base+'scripts/mediabox/jQuery_compressed/mediaboxes/loading.gif',
			closeHTML		: '<div id="ImageBoxCloseLink">'+txt_close+'</div>',
			textImage		: txt_image,
			textImageFrom	: txt_of
	});
	jQuery.FlashBox.init({
			loaderSRC		: base+'scripts/mediabox/jQuery_compressed/mediaboxes/loading.gif',
			closeHTML		: '<div id="FlashBoxCloseLink">'+txt_close+'</div>',
			textFlash		: txt_video,
			textFlashFrom	: txt_of
	});
}
$(document).ready(function() { initMediaBoxes(); });
