/* ======================================================================

Dom Ready Function

=======================================================================*/
var slippy
window.addEvent('domready', function(){
	if($('moreCopy')){
		var more = buildMoreButton().injectBefore($('moreCopy'));
		slippy = new Fx.Slide('moreCopy').hide();
	}
	
});

function buildMoreButton () {
    var ltxt = "read more >>";
    if(location.href == "http://test.telme.com/GTINTER/MediaCo/shopping-in-dubai.html") {
        ltxt = "Read more >>";
    }
	var mb = new Element('a', {
		'href': '#',
		'class': 'myClass',
		'html': ltxt,
		'styles': {
			'display': 'block',
			'text-align': 'left',
			'outline': 'none',
			'font-size': '11px'
		},
		'events': {
			'click': function(e){
				e.stop();
				slippy.toggle();
				if(this.get('text')=='<< hide'){	this.set('html', this.lt);	}
				else {	this.set('html', '<< hide');	}
			}
		}
	});
	mb.lt = ltxt;
	return mb;
}
