if(!window['global_js']){var global_js = true;
// START


function onMessageClose(){
	$(this).parent().fadeOut();
}

$(document).ready(function(){
	
	//$('#wrapper').after("<div id=\"wrapper-bottom\"></div>");

	// Message Box
	$('.yellow-msg, .red-msg, .green-msg').each(function(){
		var ThisObj = $(this);
		var html = ThisObj.html();
		
		if(ThisObj.hasClass('green-msg')) var c = 'green-msg';
		else if(ThisObj.hasClass('yellow-msg'))var c = 'yellow-msg';
		else var c = 'red-msg';
		
		ThisObj.removeClass(c); 
		ThisObj.addClass(c+'2'); 
		ThisObj.html('');
		ThisObj.append($(document.createElement('div')).addClass('msg-top'));
		ThisObj.append($(document.createElement('div')).addClass('msg-content').html(html));
		ThisObj.append($(document.createElement('div')).addClass('msg-close').click(onMessageClose));
		ThisObj.append($(document.createElement('div')).addClass('msg-bottom').html("<div></div>"));
	});

	// New Window
	$('a.newWindow').click(function(){
		window.open($(this).attr('href'));
		return false;
	});

})




// END
}