function resizeContentBG() {

	var max_contentbg_h =  $("#frame").height() - $("#content").offset().top - 6;
	if ($("#contentbg").height() > max_contentbg_h) {
		$('#contentbg img').attr('height' , max_contentbg_h);
	} 
}

