function swapAp(item, posicio, r) 
{
    var imatge = document.getElementById('reserva' + item);
    if (item == 1 && posicio == 1)
	imatge.src = r + 'img/hotel_logo2.jpg';
    else if (item == 1 && posicio == 0)
	imatge.src = r + 'img/hotel_logo.jpg';
    else if (item == 2 && posicio == 1)
	imatge.src = r + 'img/estances_logo2.jpg';
    else if (item == 2 && posicio == 0)
	imatge.src = r + 'img/estances_logo.jpg';
    else if (item == 3 && posicio == 1)
	imatge.src = r + 'img/restaurant_logo2.jpg';
    else if (item == 3 && posicio == 0)
	imatge.src = r + 'img/restaurant_logo.jpg';
}

function swap(obj, id) {
	obj.src = id;
}

