$(function() {
    $('#travelocity-box li.travelocity a').click(function() {

        $reserve_index = $(this).parent().index();

        Shadowbox.open({
            width: 630
			, content: '/template/travelocity.php?tab=' + $reserve_index
			, player: 'iframe'
			, scrolling: 'no'
        });
        return false;
    });
});

