// A1 Holidays Expand/Retract Function -- JavaScript Document

function expand(item) {
	
	if (document.getElementById(item).style.display == 'none') {
		document.getElementById(item).style.display = 'block';

		if(document.domain == 'www.a1holidays.com' || document.domain == 'a1holidays.traveltel.net')
		{
			document.getElementById(item + "_text").innerHTML = 'Hide Info &raquo;';
		}
		else
		{
			document.getElementById(item + "_text").innerHTML = 'Hide Info &raquo;';
		}
	} else {
		document.getElementById(item).style.display = 'none';
		if(document.domain == 'www.a1holidays.com' || document.domain == 'a1holidays.traveltel.net')
		{
			document.getElementById(item + "_text").innerHTML = 'More Info &raquo;';
		}
		else
		{
			document.getElementById(item + "_text").innerHTML = 'More Info &raquo;';
		}
	}

}