$a(function() {
		   
	
	// Sifr
	$a('div#content h1').sifr({ strSWF: 'flash/helvetica.swf', strColor: '#b7351a', strWmode: 'transparent', strCase: 'upper' },{ expressInstall: true });
	$a('div#content h2').sifr({ strSWF: 'flash/helvetica.swf', strColor: '#443424', strWmode: 'transparent' },{ expressInstall: true });
	
	
	$a('li#hotel-tab').click( function() { 
		$a(this).addClass('current');
		$a('li#vacation-tab').removeClass('current');
		$a('#package-wrapper').hide();
		$a('#hotel-wrapper').show();
		return false;
	});
	$a('li#vacation-tab').click( function() { 
		$a(this).addClass('current');
		$a('li#hotel-tab').removeClass('current');
		$a('#hotel-wrapper').hide();
		$a('#package-wrapper').show();
		return false;
	});
	
	$a('ul#plan-icons li a').mouseover( function() { 
		$a(this).parents('ul#plan-icons').children('.current').removeClass('current');
		$a(this).parent().addClass('current');
		iconinfo = $(this).children('em').html();								   
		$a(this).parents('ul#plan-icons').siblings('div#plan-type').children('span').html(iconinfo);
	});

	
	$a('a#forecast-link').click(function() { window.open("/popup-weather.php","weather","menubar=0,resizable=0,width=653,height=583" ); return false; });
	$a('a#imap-link').click(function() { window.open('/imap/popmap.php','popupWindow','menubar=yes,scrollbars=yes,resizable=no,width=770,height=560'); return false; });


});