$(document).ready(function(){
		$('.package').each(function() {
		var package = $(this);

	$('.package-toggle-exclusive a', package).toggle(function() { 
		$.get('/package-details.php', { package_id: this.id.substr(3), channel: this.rel, lang: 'en' }, function(data) { 
			$('.package-long', package).html(data).slideDown('slow');
		});
		$(this).html("hide details");
	}, function() {
		$('.package-long', package).slideUp('slow');
		$(this).html("view details");
	});
});
		    });