jQuery(document).ready(function() {

    var platforms = navigator.platform;
    if( platforms.indexOf("Linux") == -1 )
        //swfobject.embedSWF("/flash/pohja.swf", "flash", "990", "720", "8.0.0", null, { city : kaupunki }, { wmode:'opaque', bgcolor:'#000000' }, null);

    $("#toggle-off").click(function(event) {
        event.preventDefault();
        $(".text-rooms").slideToggle();
        $("#toggle-on").toggle();
        $("#toggle-off").toggle();
    });

    $("#toggle-on").click(function(event) {
        event.preventDefault();
        $(".text-rooms").slideToggle();
        $("#toggle-on").toggle();
        $("#toggle-off").toggle();
    });

    jQuery('#mycarousel').jcarousel({
        auto: 2,
        wrap: 'circular',
        itemVisibleInCallback: {onBeforeAnimation: mycarousel_itemVisibleInCallback},
        itemVisibleOutCallback: {onAfterAnimation: mycarousel_itemVisibleOutCallback},
        initCallback: mycarousel_initCallback
    });
});
