﻿$(function () {
    //format tables with id=formattable need style.css
    $("#formattable tr:first").addClass('tabletitle');
    $("#formattable tr").filter(":even").not(":first").addClass('tableevenrows');
    $("#formattable tr:odd").addClass('tableoddrows');
    $("#formattable td").css("border", "solid 1px lightgrey");


    $(".boxevent .boxbutton").click(function () {
        $(this).parent().find(".boxbody").slideToggle(1000);
        $(this).find("img").toggle();
    })


    //PhotoGallery
    $("#photogallerydescription").animate({ "opacity": 0.2 }, 2000);
    $(".loadphotogallery").click(function () {
        var np = $(this).attr("rel");
        $("#photogalleryplaceholder").html("<img src=../images/loadingajax.gif />");
        $("#photogalleryplaceholder").load("default.aspx?mode=showphotogallery&submode=ajax&" + np, function () {
            $("#photogallerydescription").animate({ "opacity": 0.3 },2000);
        });
    });
    $("#photogalleryplaceholder").hover(function () {
        $("#photogallerydescription").stop().animate({ "opacity": 0.9 });
    }, function () {
        $("#photogallerydescription").stop().animate({ "opacity": 0.0 });
    });


    $('.slideshowtoppage').cycle({
        fx: 'fade',
        next: '#next2',
        prev: '#prev2',
        pause:   1

    });


    $('.slideshowadvertisement').cycle({
        fx: 'scrollUp',
        delay: -2000
    });

});


