
$(document).ready(function () {
    //lightbox
    $('a[rel*=lightbox]').lightBox();

    //Fenster Höhe BG 100%;
    $('#left').css('height', $(document).height());
    $('#right').css('height', $(document).height());

    //Hover f. Main Menu
    $('#nav li').hover(
		function () {
		    $(this).addClass('active');
		},
		function () {
		    $(this).removeClass('active');
		}
	);

    //News scrollable
    $(".scrollable").scrollable(
		{
		    circular: true
		}
	).autoscroll(
		{
		    autoplay: true,
		    interval: 4000
		}
	).navigator();

    //fb Logo scrollt mit
    var fb = $('a#fb');
    $(window).scroll(function () {
        fb.stop().animate({ "top": ($(window).scrollTop() + 30) + "px" }, "fast");
    });

    //Liste Hover einfaden
    $('#list li').hover(
		function () {
		    $(this).stop().animate({ backgroundColor: "#4d1c59" }, 500);
		},
		function () {
		    $(this).stop().animate({ backgroundColor: "#702182" }, 500);
		}
	);


});







