$(document).ready(function() {
	initSlideshow();	
	initSubmenu();
});

function initSlideshow() {
	$('#logo').cycle({
		fx:     'fade',
		timeout: 2000,
		speed:	 2500
	});
}

function initSubmenu(){
	
	//if(!$.browser.msie){
		//$('#header ul li ul.sub').animate({
			//opacity: 0.95
		//}, 0);
	//}
	
	
	$('#header ul li').hover(function(){
		$(this).children('a').addClass('hover');
		if( $(this).children('ul.sub').length > 0 ){
			$(this).find('span').addClass('red');
			$(this).children('ul.sub').show();									
		}
	},function(){
		$(this).children('a').removeClass('hover');
		if( $(this).children('ul.sub').length > 0 ){
			$(this).find('span').removeClass('red');
			$(this).children('ul.sub').hide();									
		}
	});
}
