function adaptheight(){
	e = document.getElementById("content");
	c = document.getElementById("wrap");
	if(c && e){
		if(c.offsetHeight){
			e.style.height = (c.offsetHeight>280)?(c.offsetHeight-280)+"px":(c.offsetHeight)+"px";
		}
	}
}
//window.onload = adaptheight;
//window.onresize = adaptheight;





$(document).ready(function(){

	$("DIV.kdmp-flash").each(function(){
		options = eval('('+$(this).attr('rel')+')');
		$(this).flash(options);
	});

});