﻿// Common recourses for callnorwegian.no

// FX/GFX
/*=======================================
FX_fadeClose()
Fades, collapses height of and removed target from DOM.
	
Variables:
o - Object/DOM reference. Can select wit JQuery properties (#div < p, etc)
	
Returns:
Nothing.
=======================================*/


function FX_fadeCloseRemove(o) {
    $(o).animate({ opacity: "0" }, function() {
        $(o).animate({ height: "0" }, function() {
            $(o).remove();
        });
    });
}

function hideElement(o) {
    $(o).hide();
}

function showElement(o) {
    $(o).show();
}

