$(document).ready(function(){
$(".xillia2").click(function(event) { change("xillia2"); event.preventDefault(); });
function change(to) {
document.getElementById("xillia2").style.setProperty('display', 'none');
document.getElementById(to).style.setProperty('display', 'block'); }
});