function initMenu() {
 $('#menu ul').hide();
 $('#menu .active').show();
  $('#menu li a').click(function(){
    var checkElement = $(this).next();
    if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
   return false;
   }
    if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
     $('#menu ul:visible').hide();
     checkElement.show();
   return false;
   }
  });

}
  
$(document).ready(function(){
	initMenu();
	//loading that FLV video for the right banner
	$('#flv_video').each(function(){
			swfobject.embedSWF("/FLVPlayer_Progressive.swf?skinName=/Clear_Skin_1&streamName=/videos/sumo_bunker.flv&autoPlay=true&&autoRewind=false&playSound=var_stop", "flv_video", "184", "124", "6.0.0");
	});
	
	$('UL.quad TD LI').attr('class','');
	$('UL.quad TD:first-child LI').attr('class','first');
	$('UL.quad TD LI').addClass('gradient');
	
	$('UL.double TD:odd LI').addClass('withLeftBorder');
	
	
	$('.top-banner').each(function(){
		$(this).empty().append('<div id="top-banner-inner"></div>');
		swfobject.embedSWF("/images/banner_rotator_586X140.swf", "top-banner-inner", "586", "140", "6.0.0");
	});
	
});

