window.addEvent('domready', function() {
									 
	//Squeezbox ------------------------------------
	
	/**
	 * That CSS selector will find all <a> elements with the
	 * class boxed
	 *
	 * The example loads the options from the rel attribute
	 */
	
	
	SqueezeBox.assign($$('a[rel=boxed]'));

	SqueezeBox.assign($$('a.boxed'), {
		parse: 'rel'
	});


	 $('simple_tip').store('tip:title', "This is the Title");
		    $('simple_tip').store('tip:text', "This is the Text");
		    
		    var SimpleTip = new Tips($('simple_tip'), {
		        showDelay: 0,
		        hideDelay: 0,
		        offsets: {x: 10, y: 10},
		        fixed: false
		    });

});
