$(document).ready(function() {
	initSlideshow();
	showSub();
	showDoc();
});

function initSlideshow() {
    $('#sfeer').cycle({
		fx: 		'fade',
		timeout:	'5000',
		speed:		'1500'
	});
};

function showSub(){
	$('.menu').hover(function(){
		$(this).children('.sub').show();
		$(this).children('a').addClass('active');
	}, function(){
		$(this).children('.sub').hide();
		$(this).children('a').removeClass('active');
	});
};

function showDoc(){
	$('a.showdoc').click(function(){
		$(this).next().next('.item-wrapper').slideToggle('fast');
	});
};
