/* ======================================================================

Dom Ready Function

=======================================================================*/
var slippy2
window.addEvent('domready', function(){
	if($('moreCopy2')){
		var more = buildMoreButton2().injectBefore($('moreCopy2'));
		slippy2 = new Fx.Slide('moreCopy2').hide();
	}

});

function buildMoreButton2 () {
    var ltxt = "read more >>";
    if(location.href == "http://test.telme.com/mideast/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();
				slippy2.toggle();
				if(this.get('text')=='<< hide'){	this.set('html', this.lt);	}
				else {	this.set('html', '<< hide');	}
			}
		}
	});
	mb.lt = ltxt;
	return mb;
}

