$(document).ready(function(){

    $("div.ddiv").css("display","none");

    $(".termine_head li ul").css("display","none");

    $(".picpreview a img").animate({opacity: .5}, 1)

    $(".cal_nav a").live('click', function(event) {
        $("#terminkalender").load(window.location+$(this).attr("href").substr($(this).attr("href").indexOf("?"))+" #cal_div");
        event.preventDefault();
    });

    $(".menu > ul > li > a").mouseenter(function() {
        $(this).next("ul").hide().css("height","auto").css("display","none").slideDown();
    });

    $(".picpreview a img").live('mouseover',function(){
        $(this).animate({opacity: 1}, 200);
    });
    $(".picpreview a img").live('mouseout',function() {
        $(this).animate({opacity: .5}, 100);
    });
    
	$('div.press a').jqzoom({
		zoomType: 'standard',
		alwaysOn : false,
		zoomWidth: 650,
		zoomHeight:400,
		position:'top',
		yOffset:20,
		xOffset: -250,
		showEffect : 'fadein',
		hideEffect: 'fadeout',
		preloadImages: false
	});

});
