/**
 * Compass Session for jQuery
 *
 * http://www.compasswebpublisher.com/jquery/compass-session
 *
 * Copyright (c) 2009 Ixpleo, Inc
 * Dual licensed under the MIT and GPL licenses.
 *
 */

(function ($) {
	$.sessionGet = function(name) {	
		var ret;
		
		$.ajax({
			type: 'POST',
			async: false,
			url: $.compassSessionUrl,
			data: 'name='+name,
			dataType: 'text',
			success: function(msg) {
				ret = msg;
			}
		});
		
		return ret;
	}
	
	$.sessionSet = function(name, val) {
		$.ajax({
			type: 'POST',
			async: false,
			url: $.compassSessionUrl,
			data: 'name='+name+'&val='+val,
			dataType: 'text'
		});
	}

	$.compassSessionUrl = '';
})(jQuery);
