
// -------------------------------------------------
// flash
// -------------------------------------------------

function FL_CloseFlash() {
   return CL_removePopup();
}

// ------------------------------------------
// contact form
// ------------------------------------------

var cu_children;
var cu_childControls = new Array();
var cu_isPostback = false;

function cu_showHideChildren() {
   var row = MM_findObj(cu_childControls[0]);

   if (cu_children && row) {
      var index = cu_children.selectedIndex;

      for (var i = 1; i < cu_childControls.length; i++) {
         var item = MM_findObj(cu_childControls[i]);
         if (item) {
            var cssClass = item.value == '' && cu_isPostback ? 'textinput2' : 'textinput';
            item.className = index >= i ? cssClass : 'hidden';
         }
      }
      row.className = index > 0 ? '' : 'hidden';
   }
}

function cu_registerChildren(id) {
   cu_children = MM_findObj(id);
}


//--> J-QUERY FRAMEOFFERS

$(document).ready(function() {
   $("#frameoffers .offerContainer:first").css("display", "block");
   $("#frameoffers .offerContainer:first").css("z-index", "1000");
});

function getNextOffer(next) {
    $("#frameoffers .offerContainer").fadeOut("slow");
    $("#frameoffers .offerContainer:eq(" + next + ")").fadeIn("slow");
}


