$(document).ready(function(){
    jQuery.fx.off = false;
    /*
    // slideshow
    $('.cycles').cycle({fx: 'fade'});
	
	// carousel
	$("#carousel").infiniteCarousel({
		transitionSpeed: 2000,
		displayTime: 4000,
		imgWidth: 128,
		imgHeight: 122
	});
                        
    // bind date picker
    $('.date').datepick();
    
    // init smoothAnchors
    $.smoothAnchors(1000, "easeInOut", false);
    
    // inputfill
    $(".inputfill").focus(function(){
        if ($(this).val() == $(this).attr("alt")) $(this).val("");
    }).blur(function(){
        if ($(this).val() == '') $(this).val($(this).attr("alt"));
    });
	
	//ajax	
	$("#ajax-content").load("aktuelle-angebote.php #aktuelle-angebote");
	
    */
    // shadowbox
    Shadowbox.init();
    
	$("a.imghover").mouseenter(function(){
		$(".halb2 img").css("opacity", 0.2);
		var newSrc = $(this).attr("href");
		$(".halb2 img").attr("src", newSrc);
		$(".halb2 img").load(function(){
			$(this).css("opacity", 1);
		});
	});
	
    // noSpam
    noSpam();
});
