$(document).ready(function(){
  $("#navmenu-h li,#navmenu-v li").hover(
    function() { $(this).addClass("iehover"); },
    function() { $(this).removeClass("iehover"); }
  );
  $("#teaserpic").cycle({
		fx: 'fade',
		speed: 3000
	});
	$("#media a, .fancypop").fancybox({
		transitionIn: 'elastic',
		transitionOut: 'elastic',
		overlayShow	: false
	});
	$('.collect').each(function() { 
		$(this).html( "<span>►</span>" + $(this).html());
		$(this).next().hide();
		$(this).css('cursor', 'pointer');
	});

    $(".collect").click(
    function(){          
		if ($(this).is(".down")) {
			$(this).removeClass("down");
			$(this).html( "<span>►</span>" + $(this).html().substr(14));
			$(this).next().slideUp();
		} else {
			$(this).next().slideDown();
			$(this).html( "<span>▼</span>" + $(this).html().substr(14));
			$(this).addClass("down");
		}
	});
	$('#umenu li:last').css('border-right', 'none');
});
