jQuery(document).ready(
	/*
	This function gets loaded when all the HTML, not including the portlets, is
	loaded.
	*/
	
	function() {

		/* Cookie Add/Remove */
		jQuery("#mode_aa").click(function() {
			jQuery.cookie('MODE_ID', 'xx_XX', {path: '/'});
		});
		
		jQuery("#mode_normal").click(function() {
			jQuery.cookie('MODE_ID', null, {path: '/'});
		});
	}
);
