// -------------------------------------------------
// 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);
}
// ------------------------------------------
// Frame Offer - animation
// ------------------------------------------

$("#boxOffers").ready(function() {

    if (readCookie("boxOffers") == "none") {
        $("#boxOffers").css("display", "none");
        $(".offersbutton a").attr("class", "down");
    }
});
$(document).ready(function() {

    $(".offersbutton a").click(function() {
        $("#boxOffers").slideToggle("slow", function() {
            createCookie("boxOffers", $("#boxOffers").css("display"), 1);
            var direction = "down";
            if ($("#boxOffers").css("display") == "none") {
                
                direction= "down";
            } else {
                direction="up";
                
            }
            $(".offersbutton a").css("background-image", "url(/media/winter/arrow-"+direction+".gif)");


        });
    });

});


