/*******************************************
Infobox ein-/ausblenden
*******************************************/

var $infobox;
var $window;


/* 
Hauptschleife
*/
function infobox_main_loop() {
    /* Infobox einblenden, wenn das Fenster breit genug ist */
    
    if ($window.width() > 1200) {
        $infobox.show();
    } else {
        $infobox.hide();
    }
    /* Hauptschleife neu starten */
    setTimeout("infobox_main_loop()", 800);
}


/* 
On Document Ready 
*/
jQuery(document).ready(function() {
    $window = jQuery(window);
    $infobox = jQuery("#infobox");
    infobox_main_loop();
});

