/*
    ONLOAD FUNCTION
    These functions are fired as soon as the DOM is ready
*/
$(document).ready(function () {

    // Init equalheights
    $(".equalheights").equalHeights();
    
    // Slider initialisieren
    tqslideinit();
    tqboxstretch();
    
    // Formular-Felder Vorbelegung löschen/wiederherstellen
    tqformfill();
    
    if ($(".touch").length > 0) {
        // Wir sind auf einem Touchscreen
        $('.nav ul').sftouchscreen().superfish({
            speed: 'fast',
            delay: 500,
            animation: {opacity:'show',height:'show'},
            autoArrows: false
        });
    } else {
        $('.nav ul').superfish({
            speed: 'fast',
            delay: 500,
            animation: {opacity:'show',height:'show'},
            autoArrows: false
        });
    }
   
    $(window).resize(function() {
        $('.equalheights').css('height', 'auto')
            .equalHeights();
        if ($('.ie678').length < 1) {
            tqboxstretch();
        }
    });

// Ende Document Ready
});	
