function showMsg(type) {
	
	if (type == 'int') {
		
		var a = '<h1 class="subtitle">Lobby Interior</h1>\n';
		var b = '<p>Beautifully designed suites with everything you need for gracious living.<br />';
		var c = 'Your new home at Umalas Residence will provide you with the luxury and relax you require, without any sacrifice.<br />';
		var d = 'Umalas Residence services provide all the conveniences of hotel living, in a comfortable, elegant atmosphere.<br />';
		var e = '<a href="#" title="">click the picture for more</a></p>';
		
		document.getElementById('msg').innerHTML = a + b + c + d + e;
		document.getElementById('msgar').innerHTML = '<img src="img/ar_1.png" alt="" style="display: block;"/>';
		
	}
	
	if (type == 'liv') {
		
		var a = '<h1 class="subtitle">Living Room</h1>\n';
		var b = '<p>Our guest\'s comfort is our primary concern. We will give our best to find your needs.<br />';
		var c = '<a href="#" title="">click the picture for more</a></p>';
		
		document.getElementById('msg').innerHTML = a + b + c;
		document.getElementById('msgar').innerHTML = '<img src="img/ar_2.png" alt="" style="display: block;"/>';
		
	}
	
	if (type == 'bed') {
		
		var a = '<h1 class="subtitle">Bed Room</h1>\n';
		var b = '<p>Specially designed for you to find peace and harmony even while you were sleep.</br /><br />';
		var c = '<a href="#" title="">click the picture for more</a></p>';
		
		document.getElementById('msg').innerHTML = a + b + c;
		document.getElementById('msgar').innerHTML = '<img src="img/ar_3.png" alt="" style="display: block;"/>';
		
	}
	
	if (type == 'bat') {
		
		var a = '<h1 class="subtitle">Bath Room</h1>\n';
		var b = '<p>With modern minimalis design, you will find that Umalas Residence is the perfect choice for you<br />';
		var c = '<a href="#" title="">click the picture for more</a></p>';
		
		document.getElementById('msg').innerHTML = a + b + c;
		document.getElementById('msgar').innerHTML = '<img src="img/ar_4.png" alt="" style="display: block;"/>';
		
	}
	
}