
/*overstate*/
$(document).ready(function() {
    $(".menuoverstate").each(function(i) {

        preload_image = new Image();
        preload_image.src = this.src.replace(".jpg", "_o.jpg");

        $(this).hover(
            function() {
                if (this.src.indexOf("_o.jpg") == -1) {
                    this.src = this.src.replace(".jpg", "_o.jpg");
                }

            },

            function() {
                this.src = this.src.replace("_o.jpg", ".jpg");

            });

    }
        );

    $(".menuoverstate2").each(function(i) {

        preload_image = new Image();
        preload_image.src = this.src.replace(".gif", "_o.gif");

        $(this).hover(
            function() {
        if (this.src.indexOf("_o.gif") == -1) {
            this.src = this.src.replace(".gif", "_o.gif");
                }

            },

            function() {
            this.src = this.src.replace("_o.gif", ".gif");

            });

    }
        );

    $('.imagesmallnews a').fancybox({
        'autoScale': true,
        'autoDimensions': true
    });

    $('#slider2').cycle({
        fx: 'scrollHorz',
        timeout: 9000
    });

});

