function doCorners(){
	
	$('.columnheader').css("width","234px").corners("4px top");
	$('.columnfooter').css("width","234px").corners("4px bottom");
   	$('.bigblockheader').css("width","712px").corners("4px top");
	$('.bigblockfooter').css("width","712px").corners("4px bottom");
	
}

function initMenu() {
	$('#menu ul').css("height","150px");
	$('#menu').css("height","270px");
  $('#menu ul').hide();
  $('#menu ul:first').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').slideUp('normal');
        checkElement.slideDown('normal');
        return false;
        }
      });}

	  function doPageLoad(){
	  	initMenu(); 
		
			doCorners();
		
			$('#photoAlbum a').lightBox();
		
			$('#tickertape').cycle({ 
		    fx:      'scrollLeft', 
		    speed:    2000, 
		    timeout:  6000 
			});
		
			$('#sponsors200').cycle({ 
		    fx:      'scrollDown', 
		    speed:    1000, 
		    timeout:  5000 
			});
			
	  }
