/**
 * Observe Pop
 * @desc Handles the observation of the popular gadget boxes
 * @author Doug Hill doug@zagg.com
 * @since 05.25.2010
 */
var SetSession = Class.create({
	initialize: function(val){
		new Ajax.Request('/personalize/zaggskins/includes/ajax/product_ajax.php', {
			method: 'post',
			parameters: {
				action: 'set',
				gadget: val
			},
		    asynchronous: false,
			onComplete: function(e) {
				result = e.responseText.evalJSON(true);
			}
		});
		this.json = result;
	}
});
