
	$(document).ready(function() {
		// REPLACES THE IF ELSE JAVASCRIPT >> ifExists library function was interefering with the Shadowbox
		$('.ifExists').each(function() {
			if ((!$(this).attr('rel')) || ($(this).attr('rel') == '/echotools/images/spacer.gif')) {
				$(this).remove();
			}	
		});
		
		// WHEN YOU HOVER OVER A TABLE ROW
		$('#tour_dates tr').hover(function() {
			$(this).addClass('alt');
		}, function() {
			$(this).removeClass('alt');
		});
		
		// WHEN YOU CLICK ON MORE INFO
		$('.revealMoreInfo').toggle(function() {
			$(this).parent('td').parent('tr').next().removeClass('hide');
		},function() {
			$(this).parent('td').parent('tr').next().addClass('hide');
		});
	});