jQuery(document).ready(function($) {
	$(".sponsors-slider ul").jcarousel({
		vertical: true,
		auto: 5,
		scroll: 1,
		wrap: 'both',
		buttonNextHTML: null,
		buttonPrevHTML: null
    });
    
    $('.maxheight').each(function() {
    	$(this).css('height',$(this).parents('#main').height() - parseInt($(this).css('padding-top')) - parseInt($(this).css('padding-bottom')));
    });
    
     $('#navigation .sub-menu').css('opacity',0.9);
    
    $('#navigation ul li:has(ul)').hover(function() {
    	$(this).find('ul').slideDown('fast');
    }, function() {
    	$(this).find('ul').stop(true,true).slideUp('fast');
    });
});
