﻿
$(document).ready(function() {
    $('.slideshow').cycle({
        fx: 'fade',
		cleartype: true, 
		cleartypeNoBg: true
    });
    $('#bannertext').rotator({
        ms  :   4000
    });
    $("a.contact").fancybox({
        'width': 640,
        'height': 550,
        'overlayShow': true,
        'scrolling': 'no'
    });
    $("a.brochure").fancybox({
        'width': 606,
        'height': 340,
        'overlayShow': true,
        'autoScale': false
    });
    $('#nav li').hover(
            function() {
                $('ul:first', this).css('display', 'block');
            },
            function() {
                $('ul:first', this).css('display', 'none');
            }
        );
        
    $("a.fancybox").fancybox({
        'overlayShow': true
    });
});
