Welcome = function(opt) {
	this.opt = opt;
	var me = this;
	
	this.init = function() {
		$.ajax({
			url: this.opt.url1,
			type: 'GET',
			dataType: 'html',
			success: function(data) {
				$('#'+me.opt.div1).html(data+"<p align='left'><span class='welcome-link-go'><font color='#1e4765'>المزيد</font></span></p>");
				$('.welcome-link-go').click(function(){
					$.ajax({
						url: me.opt.url2,
						type: 'GET',
						dataType: 'html',
						success: function(data) {
							$('#'+me.opt.div2).html(data+"<br/><br/><p align='center'><span class='welcome-link-back'><font size='3' color='#1e4765'>الرجوع</font></span></p>");
							$('#home-contents').hide();//1500, function() {
								$('#'+me.opt.div2).show();
							//});
							$('.welcome-link-back').click(function(){
								$('#'+me.opt.div2).hide();//1500, function() {
									$('#home-contents').show();
								//});
							});
						}
					});
				});
			}
		});
	}
}