/* Author:
*/
$(function(){
  //tabs
  $( "#sport-tabs" ).tabs();
  $( "#billboard-tabs" ).tabs();
  $( "#news-tabs" ).tabs();
  
  //slideshow
  $('#slideshow').cycle({ 
      prev:   '.photo-gallery .buttons .prev', 
      next:   '.photo-gallery .buttons .next', 
      timeout: 0 
  });  

  //topmenu
  $('.topmenu .submenu').each(function(i,el){
      $(el).css('display','none');
      $(el).closest('li').addClass('has-submenu');
      $(el).css('min-width', ($(el).innerWidth()-1)+'px').css('width','auto') ;
  });

	$('.topmenu .has-submenu').hover(
		function(){
			$(this).find('.submenu').show();
		},
		function(){
			$(this).find('.submenu').hide();
		}
	);

  
  
});








